mirror of
https://github.com/silverstripe/silverstripe-subsites
synced 2024-10-22 11:05:55 +02:00
71 lines
2.4 KiB
YAML
71 lines
2.4 KiB
YAML
language: php
|
|
|
|
dist: xenial
|
|
|
|
services:
|
|
- mysql
|
|
- postgresql
|
|
- xvfb
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- tidy
|
|
- chromium-chromedriver
|
|
- chromium-browser
|
|
|
|
env:
|
|
global:
|
|
- COMPOSER_ROOT_VERSION="2.x-dev"
|
|
- DISPLAY=":99"
|
|
- XVFBARGS=":99 -ac -screen 0 1024x768x16"
|
|
- SS_BASE_URL="http://localhost:8080/"
|
|
- SS_ENVIRONMENT_TYPE="dev"
|
|
|
|
matrix:
|
|
include:
|
|
- php: 7.1
|
|
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
|
|
- php: 7.1
|
|
env: DB=PGSQL PHPUNIT_TEST=1
|
|
- php: 7.1
|
|
env: DB=MYSQL BEHAT_TEST=1
|
|
- php: 7.2
|
|
env: DB=MYSQL PHPUNIT_TEST=1
|
|
- php: 7.3
|
|
env: DB=MYSQL PHPUNIT_TEST=1
|
|
|
|
before_script:
|
|
- sudo apt-get remove -y --purge google-chrome-stable || true
|
|
# Extra $PATH
|
|
- export PATH=/usr/lib/chromium-browser/:$PATH
|
|
|
|
# Init PHP
|
|
- phpenv rehash
|
|
- phpenv config-rm xdebug.ini
|
|
- echo 'memory_limit=3G' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
|
|
|
|
# Install composer
|
|
- composer validate
|
|
- composer require silverstripe/installer:^4 silverstripe/recipe-testing:^1 --no-update
|
|
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql:^2; fi
|
|
- composer install --prefer-source --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
|
|
|
|
# Behat bootstrapping
|
|
- if [[ $BEHAT_TEST ]]; then mkdir artifacts; fi
|
|
- if [[ $BEHAT_TEST ]]; then cp composer.lock artifacts/; fi
|
|
- if [[ $BEHAT_TEST ]]; then (chromedriver > artifacts/chromedriver.log 2>&1 &); fi
|
|
- if [[ $BEHAT_TEST ]]; then (vendor/bin/serve --bootstrap-file vendor/silverstripe/cms/tests/behat/serve-bootstrap.php &> artifacts/serve.log &); fi
|
|
|
|
script:
|
|
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
|
|
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
|
|
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src tests *.php --ignore=host-map.php; fi
|
|
- if [[ $BEHAT_TEST ]]; then vendor/bin/behat @subsites; fi
|
|
|
|
after_success:
|
|
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
|
|
|
|
after_failure:
|
|
- if [[ $BEHAT_TEST ]]; then php ./vendor/silverstripe/framework/tests/behat/travis-upload-artifacts.php --if-env BEHAT_TEST,ARTIFACTS_BUCKET,ARTIFACTS_KEY,ARTIFACTS_SECRET --target-path $TRAVIS_REPO_SLUG/$TRAVIS_BUILD_ID/$TRAVIS_JOB_ID --artifacts-base-url https://s3.amazonaws.com/$ARTIFACTS_BUCKET/ --artifacts-path ./artifacts/; fi
|