diff options
author | Haru <haru@dotalux.com> | 2017-06-24 20:55:30 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2017-06-24 20:55:35 +0200 |
commit | f6662b84641d51f25e7c2af21630d8d34b6ce06b (patch) | |
tree | f6155f55c5ba8ca5a9fa33ec25c9089d607fcaa0 /.gitlab-ci.yml | |
parent | 62200a9eb2ee4ba29a5650d59f2e157d9952f3f6 (diff) | |
download | hercules-f6662b84641d51f25e7c2af21630d8d34b6ce06b.tar.gz hercules-f6662b84641d51f25e7c2af21630d8d34b6ce06b.tar.bz2 hercules-f6662b84641d51f25e7c2af21630d8d34b6ce06b.tar.xz hercules-f6662b84641d51f25e7c2af21630d8d34b6ce06b.zip |
Fix "debian stable" builds in gitlab
Debian 9 "Stretch" was released on June 17th, and replaces MySQL with
MariaDB
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8a3eb53c5..d5599253f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -368,7 +368,7 @@ pre_re:debian-stable: image: debian:stable variables: <<: *base_vars - INSTALL_PACKAGES: gcc mysql-client libmysqlclient-dev + INSTALL_PACKAGES: gcc mariadb-client libmariadbclient-dev-compat script: - ./tools/ci/travis.sh build --enable-debug --enable-Werror --enable-buildbot --disable-renewal - ./tools/ci/travis.sh test ragnarok ragnarok ragnarok mysql @@ -380,7 +380,7 @@ re:debian-stable: image: debian:stable variables: <<: *base_vars - INSTALL_PACKAGES: gcc mysql-client libmysqlclient-dev + INSTALL_PACKAGES: gcc mariadb-client libmariadbclient-dev-compat script: - ./tools/ci/travis.sh build --enable-debug --enable-Werror --enable-buildbot - ./tools/ci/travis.sh test ragnarok ragnarok ragnarok mysql |