diff options
author | Stan Hu <stanhu@gmail.com> | 2019-08-04 09:12:42 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2019-08-04 09:15:14 -0700 |
commit | 9775b30c815d80b49c5753cad9f1c1b37eac1ab4 (patch) | |
tree | 75dcbd8c18fd11a63548bd632103eb9246e3bdf7 /.gitlab | |
parent | 5ebbe95ad3211e4a751c38919ed7d31a6a0d5d50 (diff) | |
download | gitlab-ce-9775b30c815d80b49c5753cad9f1c1b37eac1ab4.tar.gz |
Upgrade PostgreSQL versions in CIsh-update-postgresql-ci
* 9.6.11 -> 9.6.14
* 10.7 -> 10.9
This is done in preparation for upgrading PostgreSQL in Omnibus:
https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests/3492
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/ci/frontend.gitlab-ci.yml | 2 | ||||
-rw-r--r-- | .gitlab/ci/rails.gitlab-ci.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab/ci/frontend.gitlab-ci.yml b/.gitlab/ci/frontend.gitlab-ci.yml index a0db84bd25a..d2148f01441 100644 --- a/.gitlab/ci/frontend.gitlab-ci.yml +++ b/.gitlab/ci/frontend.gitlab-ci.yml @@ -8,7 +8,7 @@ .use-pg: &use-pg services: - - name: postgres:9.6.11 + - name: postgres:9.6.14 command: ["postgres", "-c", "fsync=off", "-c", "synchronous_commit=off", "-c", "full_page_writes=off"] - name: redis:alpine diff --git a/.gitlab/ci/rails.gitlab-ci.yml b/.gitlab/ci/rails.gitlab-ci.yml index 24b4eb3a4c1..8a89232fdd4 100644 --- a/.gitlab/ci/rails.gitlab-ci.yml +++ b/.gitlab/ci/rails.gitlab-ci.yml @@ -1,12 +1,12 @@ .use-pg: &use-pg services: - - name: postgres:9.6.11 + - name: postgres:9.6.14 command: ["postgres", "-c", "fsync=off", "-c", "synchronous_commit=off", "-c", "full_page_writes=off"] - name: redis:alpine .use-pg-10: &use-pg-10 services: - - name: postgres:10.7 + - name: postgres:10.9 command: ["postgres", "-c", "fsync=off", "-c", "synchronous_commit=off", "-c", "full_page_writes=off"] - name: redis:alpine |