diff options
author | Mario <mario@mariovavti.com> | 2022-02-11 10:24:51 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-02-11 10:24:51 +0000 |
commit | 9804a6716551d29a367fac747217f3f2f0358bec (patch) | |
tree | cf9d73e0d561f9b47c417909b28258024acfd37d /.gitlab-ci.yml | |
parent | 21eddefa4118230cc1faafe47b9544f0a06374a3 (diff) | |
download | volse-hubzilla-9804a6716551d29a367fac747217f3f2f0358bec.tar.gz volse-hubzilla-9804a6716551d29a367fac747217f3f2f0358bec.tar.bz2 volse-hubzilla-9804a6716551d29a367fac747217f3f2f0358bec.zip |
more version bumps
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cc25e17b5..7a44094e3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -84,33 +84,34 @@ before_script: - tests/results/ -# PHP7.3 with MySQL 5.7 -php7.3_mysql5.7: +# PHP8.0 with MySQL 5.7 +php8.0_mysql5.7: <<: *job_definition_mysql services: - mysql:5.7 -# PHP7.3 with MySQL 8 (latest) -php7.3_mysql8: +# PHP8.0 with MySQL 8 (latest) +php8.0_mysql8: <<: *job_definition_mysql services: - name: mysql:8 command: ["--default-authentication-plugin=mysql_native_password"] -# PHP7.3 with MariaDB 10.2 -php7.3_mariadb10.2: +# PHP8.0 with MariaDB 10.2 +php8.0_mariadb10.2: <<: *job_definition_mysql services: - name: mariadb:10.2 alias: mysql -# PHP7.3 with MariaDB 10.3 (latest) -php7.3_mariadb10.3: +# PHP8.0 with MariaDB 10.3 (latest) +php8.0_mariadb10.3: <<: *job_definition_mysql - image: registry.gitlab.com/dawnbreak/hubzilla/core:php7.3 + image: php:8.0 + #image: registry.gitlab.com/dawnbreak/hubzilla/core:php7.3 services: - name: mariadb:10.3 alias: mysql |