Merge branch 'develop' into 'domain-block-precedence'
[akkoma] / .gitlab-ci.yml
index 78b560cac40cbda82f9333e700a93b7474310b24..88789035d43952032792e453a5d9d3238ed382af 100644 (file)
@@ -31,6 +31,7 @@ build:
 
 benchmark:
   stage: benchmark
+  when: manual
   variables:
     MIX_ENV: benchmark
   services:
@@ -58,13 +59,14 @@ unit-testing:
 federated-testing:
   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"]
   script:
     - mix deps.get
     - mix ecto.create
     - mix ecto.migrate
+    - epmd -daemon
     - mix test --trace --only federated
 
 unit-testing-rum: