-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
80 lines (73 loc) · 1.87 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Configure the build matrix
matrix:
include:
# Validation
- env: TEST=validation
php: 7.4
# PostgreSQL / various PHP
- env: TEST=pgsql
php: 7.4
- env: TEST=pgsql
php: 8.0
# MySQL / various PHP
- env: TEST=mysql
php: 7.4
- env: TEST=mysql
php: 8.0
# Path info disabled DISABLED pending a fix of pkp/pkp-lib#4414
# - env: TEST=mysql DISABLE_PATH_INFO=1
# php: 7.2
language: php
python:
- 3.3 # Required by Javascript linter/builder
git:
# Inhibit automatic submodule checkout (see below)
submodules: false
cache:
npm: true
directories:
- $HOME/.composer/cache
- $HOME/.cache
addons:
chrome: beta
apt:
update: true
packages:
- libgconf-2-4
before_install:
# Check out submodules (this script checks out developer forks if necessary)
- ./tools/startSubmodulesTRAVIS.sh
# Update to latest stable version of npm
- npm i g -npm
- |
if [[ "$TEST" != "validation" ]]; then
# Prepare for unit and integration tests.
# Prepare the server environment
./lib/pkp/tools/travis/prepare-webserver.sh
# Prepare the local codebase
./lib/pkp/tools/travis/install-composer-dependencies.sh
npm install && npm run build
else
# Prepare for validation tests.
npm install
./lib/pkp/tools/travis/install-linter.sh
fi
script:
- |
if [[ "$TEST" != "validation" ]]; then
# Run the unit and integration tests.
source ./lib/pkp/tools/travis/prepare-tests.sh
./lib/pkp/tools/travis/run-tests.sh
else
# Run the validation tests.
./lib/pkp/tools/travis/validate-xml.sh
./lib/pkp/tools/buildjs.sh -n
./lib/pkp/tools/checkHelp.sh
./lib/pkp/tools/travis/validate-json.sh
npm run lint
fi
after_script:
- cat error.log
after_failure:
- sudo apt-get install sharutils
- tar cz cypress/screenshots | uuencode /dev/stdout