-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy path.travis.yml
92 lines (76 loc) · 1.89 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
90
91
92
language: php
php:
- 7.0
- 7.1
- 7.2
services:
- mysql
env:
global:
- PHPLIST_DATABASE_NAME=phplist PHPLIST_DATABASE_USER=travis PHPLIST_DATABASE_PASSWORD=''
matrix:
- DEPENDENCIES=latest
- DEPENDENCIES=oldest
notifications:
slack:
rooms:
- SLACKNOTIFICATION
on_success: change
on_failure: always
sudo: false
cache:
directories:
- vendor
- "$HOME/.composer/cache"
before_install:
- phpenv config-rm xdebug.ini
- >
echo;
echo "Creating the database and importing the database schema";
mysql -e "CREATE DATABASE ${PHPLIST_DATABASE_NAME};";
mysql -u root -e "GRANT ALL ON ${PHPLIST_DATABASE_NAME}.* TO '${PHPLIST_DATABASE_USER}'@'%';";
mysql ${PHPLIST_DATABASE_NAME} < resources/Database/Schema.sql;
install:
- >
echo;
if [ "$DEPENDENCIES" = "latest" ]; then
echo "Installing the latest dependencies";
composer update --with-dependencies --prefer-stable --prefer-dist
else
echo "Installing the lowest dependencies";
composer update --with-dependencies --prefer-stable --prefer-dist --prefer-lowest
fi;
composer show;
script:
- >
echo;
echo "Validating the composer.json";
composer validate --no-check-all --no-check-lock --strict;
- >
echo;
echo "Linting all PHP files";
find src/ tests/ public/ -name ''*.php'' -print0 | xargs -0 -n 1 -P 4 php -l; php -l bin/*;
- >
echo;
echo "Running the unit tests";
vendor/bin/phpunit tests/Unit/;
- >
echo;
echo "Running the integration tests";
vendor/bin/phpunit tests/Integration/;
- >
echo;
echo "Running the system tests";
vendor/bin/phpunit tests/System/;
- >
echo;
echo "Running the static analysis";
vendor/bin/phpstan analyse -l 5 bin/ src/ tests/ public/;
- >
echo;
echo "Running PHPMD";
vendor/bin/phpmd src/ text config/PHPMD/rules.xml;
- >
echo;
echo "Running PHP_CodeSniffer";
vendor/bin/phpcs --standard=config/PhpCodeSniffer/ bin/ src/ tests/ public/;