This repository has been archived by the owner on Sep 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.travis.yml
46 lines (35 loc) · 1.62 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
language: php
branches:
only:
- staging
- trying
- master
matrix:
include:
- php: 7.0
- php: 7.1
- php: nightly
allow_failures:
- php: nightly
fast_finish: true
os:
- linux
notifications:
irc: "chat.freenode.net#hoaproject"
sudo: false
env:
global:
- secure: "AAAAB3NzaC1yc2EAAAADAQABAAACAQDU0zDEbdcW1I8+9EPJiBLNrikxOplyMD8uOinynpyGlcKqlG6fBAe2SpAnor8UFr/5KQ4wHmCqDg+RMYYpr4MidmZX4h9KsaYjI6iTrvl885MCOKD81qmVC+XJjuY1u6EFzmPKern2J0rX8PKlC+5LGl9om4tksTyxd1t9Hdi5275gr/fZzDLAAmP1Mtm3x2olyUyZ0CU87n/c0HOEz/Qwuh65w66DlbIH8D5yntO9vN2UB1UgdxtyHLmWemWa17gfsSADrIwZnI9gs5tKNiek1TNuTX8fPEoVj7pLOudfDst4Oam88JWyWG6Ul7nCKSkPlP3Pv9kt/XuPl0DGL5loYiBLhGJ6/vqPdwl9qrVajrrnFsqXtadKP32xzEvgDbJoE+Z0S89AIAN/W/vJrn4tsA6Iaa7MsMmzFfNw2Evk6xgzG84wmq19H3ErdJuW1+F5DT9Sm6tg5hGArPaG3mH1m/nJUJQv/npYn0BFwnSCZt2ih7ifXE6DeAU6SnwWwVOWLbEc8/sKRPaGlPqMxq7oOlSA7TehTlpWYCGRuBx92Rmcw1CgcpPJbpz22i2qaGe4KNAc2pT4cE2MlkDjS2xnqc5C5+UL9mapsseGPwlsP9kJBmNqjXm4XBtekLeY/IipnViEn1MxhxVDWGMfGDLIeLetDCGQubXHwdUpXrsZjw=="
cache:
directories:
- vendor/
before_script:
- export PATH="$PATH:$HOME/.composer/vendor/bin"
- phpenv config-rm xdebug.ini || echo "ext-xdebug is not available, cannot remove it, but that's OK"
script:
- composer install
- ./bin/kitab test --configuration-file .kitab.target.doctest.php src
- ./bin/kitab compile --configuration-file .kitab.target.html.php --output-directory /tmp src
- php -n -dphar.readonly=0 sbin/phar.php kitab.phar
- ./kitab.phar test --configuration-file .kitab.target.doctest.php src
- ./kitab.phar compile --configuration-file .kitab.target.html.php --output-directory /tmp src