diff options
author | lain <lain@soykaf.club> | 2020-08-25 15:16:20 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-08-25 15:38:12 +0200 |
commit | ea2b5c07e32eba6d8a5783fb1a45b79557e1c7b2 (patch) | |
tree | f2e44671aac832afbf8264c728c0e9c507ea6caf /.gitlab-ci.yml | |
parent | 361aa22e2862c1c914baf8257fdc8b20cbc7941d (diff) | |
parent | f891e2b2f1d1daa122b9856e4b660be394d31e34 (diff) | |
download | pleroma-ea2b5c07e32eba6d8a5783fb1a45b79557e1c7b2.tar.gz |
Merge branch 'stable' of git.pleroma.social:pleroma/pleroma into pleroma-2.1-rc0
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index be0dd4773..9e5d659f2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -65,19 +65,21 @@ unit-testing: - mix ecto.migrate - mix coveralls --preload-modules -federated-testing: - stage: test - cache: *testing_cache_policy - services: - - 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 +# Removed to fix CI issue. In this early state it wasn't adding much value anyway. +# TODO Fix and reinstate federated testing +# federated-testing: +# stage: test +# cache: *testing_cache_policy +# services: +# - 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: stage: test |