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