diff options
author | Haru <haru@dotalux.com> | 2018-06-29 12:31:25 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2018-06-30 05:59:04 +0200 |
commit | af1a8830b3ca83c8b8d96d8e4e951b48fbae0a4b (patch) | |
tree | d4fd6c1ffd02d20f79bf7a4e34f648284c0bb72c /.gitlab-ci.yml | |
parent | 3823f6c0d8fb8f17eb095ec90ec64df2ad58cab7 (diff) | |
download | hercules-af1a8830b3ca83c8b8d96d8e4e951b48fbae0a4b.tar.gz hercules-af1a8830b3ca83c8b8d96d8e4e951b48fbae0a4b.tar.bz2 hercules-af1a8830b3ca83c8b8d96d8e4e951b48fbae0a4b.tar.xz hercules-af1a8830b3ca83c8b8d96d8e4e951b48fbae0a4b.zip |
Add Ubuntu Bionic 18.04 to the GitLab CI builds
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8f90c0005..aa4cc3e45 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -761,6 +761,36 @@ re:ubuntu-xenial: - ./tools/ci/travis.sh build --enable-debug --enable-Werror --enable-buildbot - ./tools/ci/travis.sh test ragnarok ragnarok ragnarok $SQLHOST +pre_re:ubuntu-bionic: + <<: *branch_exceptions + <<: *prerequisites + stage: platforms + image: ubuntu:18.04 + services: + - mysql:5.7 + variables: + <<: *base_vars + INSTALL_PACKAGES: gcc mysql-client libmysqlclient-dev + SQLHOST: mysql + script: + - ./tools/ci/travis.sh build --enable-debug --enable-Werror --enable-buildbot --disable-renewal + - ./tools/ci/travis.sh test ragnarok ragnarok ragnarok $SQLHOST + +re:ubuntu-bionic: + <<: *branch_exceptions + <<: *prerequisites + stage: platforms + image: ubuntu:18.04 + services: + - mysql:5.7 + variables: + <<: *base_vars + INSTALL_PACKAGES: gcc mysql-client libmysqlclient-dev + SQLHOST: mysql + script: + - ./tools/ci/travis.sh build --enable-debug --enable-Werror --enable-buildbot + - ./tools/ci/travis.sh test ragnarok ragnarok ragnarok $SQLHOST + # SQL servers pre_re:mysql-5.5: |