.gitlab-ci.yml: disable CentOS 6 tests unless...

...we changed web2 packaging to using PHP from SCL
This commit is contained in:
Thomas Gelf 2017-07-04 06:26:43 +02:00
parent f2abd3541e
commit 3682568fe8
1 changed files with 14 additions and 14 deletions

View File

@ -42,20 +42,20 @@ CentOS 7/PostgreSQL:
script:
- phpunit
CentOS 6/MySQL:
stage: Unit-Tests with DB
tags:
- centos6
- director
variables:
DIRECTOR_TESTDB: "director_test_${CI_BUILD_ID}_${CI_RUNNER_ID}"
DIRECTOR_TESTDB_RES: "Director MySQL TestDB"
before_script:
- mysql -u root -e "CREATE DATABASE $DIRECTOR_TESTDB"
after_script:
- mysql -u root -e "DROP DATABASE $DIRECTOR_TESTDB"
script:
- phpunit
#CentOS 6/MySQL:
# stage: Unit-Tests with DB
# tags:
# - centos6
# - director
# variables:
# DIRECTOR_TESTDB: "director_test_${CI_BUILD_ID}_${CI_RUNNER_ID}"
# DIRECTOR_TESTDB_RES: "Director MySQL TestDB"
# before_script:
# - mysql -u root -e "CREATE DATABASE $DIRECTOR_TESTDB"
# after_script:
# - mysql -u root -e "DROP DATABASE $DIRECTOR_TESTDB"
# script:
# - phpunit
Jessie/MySQL:
stage: Unit-Tests with DB