diff options
author | Stan Hu <stanhu@gmail.com> | 2018-04-20 09:09:01 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2018-04-20 09:09:01 -0700 |
commit | cdb5f98506aa3ca847aaf0dbcab1ef97010c29b9 (patch) | |
tree | 6c3006e29bbadbd0f4e30b752fd7948df8b995b5 /.gitlab-ci.yml | |
parent | 7f8dc68c1e61639e784f5bc87565d7dd4e8774b0 (diff) | |
download | gitlab-ce-cdb5f98506aa3ca847aaf0dbcab1ef97010c29b9.tar.gz |
Downgrade MySQL CI service from 8.0 to 5.7
MySQL 8.0 made the default authentication mode `caching_sha2_password`, and
this breaks our CI builds at the moment. Downgrade until we can figure
out how to support this.
Closes #45606
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f97feca9f7b..87c3944dcce 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -75,7 +75,7 @@ stages: .use-mysql: &use-mysql services: - - mysql:latest + - mysql:5.7 - redis:alpine .rails5-variables: &rails5-variables |