From dc3cec06ca40fa1de695847a24eb06b1d220203b Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 11 Feb 2022 11:08:43 +0000 Subject: restructure --- .gitlab-ci.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1628949f9..15ebd155c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -48,14 +48,21 @@ before_script: # php.ini settings - echo 'xdebug.mode=coverage' >> /usr/local/etc/php/php.ini -# hidden job definition with template for MySQL/MariaDB -.job_template_mysql: &job_definition_mysql +# hidden job definition with template for PHP +.job_template_php: &job_definition_php stage: test script: + - vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-text + + +# hidden job definition with template for MySQL/MariaDB +#.job_template_mysql: &job_definition_mysql +# stage: test +# script: # - echo "USE $MYSQL_DATABASE; $(cat ./install/schema_mysql.sql)" | mysql --user=root --password="$MYSQL_ROOT_PASSWORD" --host=mysql "$MYSQL_DATABASE" # - echo "SHOW DATABASES;" | mysql --user=root --password="$MYSQL_ROOT_PASSWORD" --host=mysql "$MYSQL_DATABASE" # - echo "USE $MYSQL_DATABASE; SHOW TABLES;" | mysql --user=root --password="$MYSQL_ROOT_PASSWORD" --host=mysql "$MYSQL_DATABASE" - - vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-text +# - vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-text # hidden job definition with template for PostgreSQL #.job_template_postgres: &job_definition_postgres @@ -87,6 +94,10 @@ before_script: - tests/results/ +# PHP8.0 +php8.0: + <<: *job_definition_php + # PHP8.0 with MySQL 5.7 #php8.0_mysql5.7: # <<: *job_definition_mysql -- cgit v1.2.3