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