WIP add a Docker-based test env
[plcapi.git] / .travis.yml
1 language: php
2
3 # As of May 2019, Travis is deprecating VMs based on Precise, which means that we can only test on php >= 5.6 going forward
4 # (nb: this is not necessarily true yet - and we can use a different base for each php version, but we'll have to
5 # adapt composer.json plus the apache / env setup scripts to accommodate that...)
6 dist: xenial
7
8 env:
9     global:
10         - LOCALSERVER=localhost
11         - URI=/demo/server/server.php
12         - HTTPSSERVER=localhost
13         - HTTPSURI=/demo/server/server.php
14         - PROXYSERVER=localhost:8080
15         # Travis currently compiles PHP with an oldish cURL/GnuTLS combination;
16         # to make the tests pass when Apache has a bogus SSL cert whe need the full set of options below
17         - HTTPSVERIFYHOST=0
18         - HTTPSIGNOREPEER=1
19         - SSLVERSION=0
20         - DEBUG=0
21
22 php:
23   #- 5.3
24   #- 5.4
25   #- 5.5
26   - 5.6
27   - 7.0
28   - 7.1
29   - 7.2
30   - 7.3
31   - 7.4
32   - 8.0
33
34 before_install:
35   # This is mandatory or the 'apt-get install' calls following will fail
36   - sudo apt-get update -qq
37   - sudo apt-get install -y apache2 libapache2-mod-fastcgi
38   - sudo apt-get install -y privoxy
39
40   # Disable xdebug for speed (executing composer), but allow us to re-enable it later
41   # @todo move to setup_php
42   - export XDEBUG_INI=`php -i | grep xdebug.ini | grep home/travis | grep -v '=>' | head -1`
43   - export XDEBUG_INI=${XDEBUG_INI/,/}
44   - if [ "$XDEBUG_INI" != "" ]; then mv "$XDEBUG_INI" "$XDEBUG_INI.bak"; fi
45
46 install:
47   - composer install
48
49   # Re-enable xdebug for when we need to generate code coverage
50   - export COVERAGE_OPTS=""
51   - if [ "$TRAVIS_PHP_VERSION" = "7.4" -a "$XDEBUG_INI" != "" ]; then mv "$XDEBUG_INI.bak" "$XDEBUG_INI" && export COVERAGE_OPTS="--coverage-clover=coverage.clover"; fi
52
53 before_script:
54   # Set up Apache and Privoxy instances inside the Travis VM and use them for testing against
55   - sudo ./tests/ci/setup/setup_apache.sh
56   - sudo ./tests/ci/setup/setup_php.sh
57   - sudo ./tests/ci/setup/setup_privoxy.sh
58
59   # output what version of phpunit we got going
60   - vendor/bin/phpunit --version
61
62 script:
63   ./vendor/bin/phpunit $COVERAGE_OPTS tests
64
65 after_failure:
66   # Save as much info as we can to help developers
67   - cat apache_error.log
68   - cat apache_access.log
69
70 after_script:
71   # Upload code-coverage to Scrutinizer
72   - if [ -f coverage.clover ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
73   - if [ -f coverage.clover ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
74   # Upload code-coverage CodeClimate - disabled as it does not support php 8 atm
75   #- if [ -f coverage.clover ]; then CODECLIMATE_REPO_TOKEN=7fa6ee01e345090e059e5e42f3bfbcc8692feb8340396382dd76390a3019ac13 ./vendor/bin/test-reporter --coverage-report=coverage.clover; fi
76
77 # reduce depth (history) of git checkout
78 git:
79     depth: 1