-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
89 lines (81 loc) · 2.38 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
81
82
83
84
85
86
87
88
89
# Configure the build matrix
matrix:
include:
# Validation
- env: TEST=validation
php: 7.3
# PostgreSQL / various PHP
- env: TEST=pgsql
php: 7.2
- env: TEST=pgsql
php: 7.3
- env: TEST=pgsql
php: 7.4
# MySQL / various PHP
- env: TEST=mysql
php: 7.2
- env: TEST=mysql
php: 7.3
- env: TEST=mysql
php: 7.4
# Path info disabled DISABLED pending a fix of pkp/pkp-lib#4414
# - env: TEST=mysql DISABLE_PATH_INFO=1
# php: 7.2
env:
global:
- secure: "nxosaZUBRaYhk8+LHaDnVgMIveiK4zewiXW5Fw5TtB/D6V67oASufil1uhcayyzIBwnrZZmrFPLhXm0Lm1RiQHrsftffcMB5JlWK9R9EyWpyd87ewqWy3kXBAvsXXTU6ihGiaFpklhVCKt7XcDSR8bWEb2NVWrM7JS7dHDKMwaA="
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
addons:
apt:
update: true
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
source ./lib/pkp/tools/travis/start-xvfb.sh
./lib/pkp/tools/travis/start-selenium.sh
# Prepare the local codebase
./lib/pkp/tools/travis/install-composer-dependencies.sh
npm install && npm run build
else
# Prepare for validation tests.
./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:
# Upload the completed database to the PKP server for other uses
- if [[ "$TEST" != "validation" ]]; then ./lib/pkp/tools/travis/post-data-build.sh; fi
# Print logs and outputs for debugging.
- cat error.log
after_failure:
- sudo apt-get install sharutils imagemagick
- import -window root screenshot.png
- tar cz screenshot.png | uuencode /dev/stdout