summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-12-13 22:15:08 +0300
committerrinpatch <rinpatch@sdf.org>2019-12-13 22:15:08 +0300
commit703e5829dd612d8093cd2a588f445212ad82a4da (patch)
treedb64fae949a08d9c25fc42ef0c89d4df8570cdc6
parentf38fb42e30f0f6270c34c26ef3519c74b4ddc58e (diff)
.gitlab-ci.yml: bump rum postgres to non-bugged version and disable
--trace
-rw-r--r--.gitlab-ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3f5703aa1..379529ea6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -47,19 +47,19 @@ docs-build:
unit-testing:
stage: test
services:
- - name: lainsoykaf/postgres-with-rum
+ - name: postgres:9.6
alias: postgres
command: ["postgres", "-c", "fsync=off", "-c", "synchronous_commit=off", "-c", "full_page_writes=off"]
script:
- mix deps.get
- mix ecto.create
- mix ecto.migrate
- - mix coveralls --trace --preload-modules
+ - mix coveralls --preload-modules
unit-testing-rum:
stage: test
services:
- - name: lainsoykaf/postgres-with-rum
+ - name: minibikini/postgres-with-rum:12
alias: postgres
command: ["postgres", "-c", "fsync=off", "-c", "synchronous_commit=off", "-c", "full_page_writes=off"]
variables:
@@ -69,7 +69,7 @@ unit-testing-rum:
- mix ecto.create
- mix ecto.migrate
- "mix ecto.migrate --migrations-path priv/repo/optional_migrations/rum_indexing/"
- - mix test --trace --preload-modules
+ - mix test --preload-modules
lint:
stage: test