diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2022-07-11 09:28:30 +0200 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2022-07-11 09:29:18 +0200 |
commit | 08c8814ef06455a0abc74fda9bab30729b702453 (patch) | |
tree | e71c066f4e572ff688a054cc974322037e16cb61 | |
parent | 29f4ab640b0269fc7751fca7c24cda5be912d1e5 (diff) | |
download | pleroma-08c8814ef06455a0abc74fda9bab30729b702453.tar.gz |
CI: Run postgres services in alpine
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e5664da68..7a61161ee 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -59,7 +59,7 @@ benchmark: variables: MIX_ENV: benchmark services: - - name: postgres:9.6 + - name: postgres:9.6-alpine alias: postgres command: ["postgres", "-c", "fsync=off", "-c", "synchronous_commit=off", "-c", "full_page_writes=off"] script: @@ -79,7 +79,7 @@ unit-testing: policy: pull services: - - name: postgres:13 + - name: postgres:13-alpine alias: postgres command: ["postgres", "-c", "fsync=off", "-c", "synchronous_commit=off", "-c", "full_page_writes=off"] script: @@ -101,7 +101,7 @@ unit-testing-erratic: policy: pull services: - - name: postgres:13 + - name: postgres:13-alpine alias: postgres command: ["postgres", "-c", "fsync=off", "-c", "synchronous_commit=off", "-c", "full_page_writes=off"] script: |