Merge pull request #223 from creative-commoners/pulls/master/update-travis

Fix travis build
This commit is contained in:
Serge Latyntsev 2019-12-16 14:55:53 +13:00 committed by GitHub
commit 6c1fcf6266
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -16,7 +16,7 @@ matrix:
- php: 7.2
env: DB=MYSQL CORE_RELEASE=3.7 NPM_TEST=1
- php: 7.3
env: DB=MYSQL CORE_RELEASE=3 COVERAGE="--coverage-clover=coverage.xml"
env: DB=MYSQL CORE_RELEASE=3.7 COVERAGE="--coverage-clover=coverage.xml"
before_script:
- echo -e "[server]\nmax_allowed_packet=64M" | sudo tee -a /etc/mysql/conf.d/dms.cnf
@ -30,9 +30,12 @@ before_script:
script:
- vendor/bin/phpunit "$COVERAGE" dms/tests
- if [[ $NPM_TEST ]]; then cd dms; fi
- if [[ $NPM_TEST ]]; then yarn install --production=false; fi
- if [[ $NPM_TEST ]]; then yarn run build; fi
- if [[ $NPM_TEST ]]; then git diff-files --quiet -w --relative=client; fi
- if [[ $NPM_TEST ]]; then git diff --name-status --relative=client; fi
- if [[ $NPM_TEST ]]; then cd ..; fi
after_success:
- >