Commit 8ede9d18 authored by Kamil Trzciński's avatar Kamil Trzciński

Merge branch 'sh-disable-postgresql-fsync-ci' into 'master'

Disable PostgreSQL fsync for faster CI

Closes #60435

See merge request gitlab-org/gitlab-ce!27295
parents 20d8dc53 aada4607
......@@ -78,13 +78,15 @@ stages:
.use-pg: &use-pg
services:
- postgres:9.6
- redis:alpine
- name: postgres:9.6
command: ["postgres", "-c", "fsync=off", "-c", "synchronous_commit=off", "-c", "full_page_writes=off"]
- name: redis:alpine
.use-pg-10: &use-pg-10
services:
- postgres:10.0
- redis:alpine
- name: postgres:10.0
command: ["postgres", "-c", "fsync=off", "-c", "synchronous_commit=off", "-c", "full_page_writes=off"]
- name: redis:alpine
.use-mysql: &use-mysql
services:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment