X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=.gitlab-ci.yml;h=3ac30b13df5eab064cc88239720ef33cc57c7808;hb=4ba0beb60ccdc301f455c32773a3144b9448b2fb;hp=8b2f1115361b14a1e972a1ad2e5a17d56fdc8f4f;hpb=e06466a5327ca2fa3cb7abd5f130c0a8a6b6fe27;p=akkoma diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8b2f11153..3ac30b13d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,6 +24,7 @@ stages: - docker before_script: + - echo $MIX_ENV - rm -rf _build/*/lib/pleroma - apt-get update && apt-get install -y cmake - mix local.hex --force @@ -47,6 +48,10 @@ build: spec-build: stage: test + only: + changes: + - "lib/pleroma/web/api_spec/**/*.ex" + - "lib/pleroma/web/api_spec.ex" artifacts: paths: - spec.json @@ -150,6 +155,20 @@ analysis: script: - mix credo --strict --only=warnings,todo,fixme,consistency,readability +cycles: + stage: test + image: elixir:1.11 + only: + changes: + - "**/*.ex" + - "**/*.exs" + - "mix.lock" + cache: {} + script: + - mix deps.get + - mix compile + - mix xref graph --format cycles --label compile | awk '{print $0} END{exit ($0 != "No cycles found")}' + docs-deploy: stage: deploy cache: *testing_cache_policy