diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2022-07-11 10:15:18 +0200 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2022-07-11 10:15:18 +0200 |
commit | e574408b33a198ecabd035bbfbecaf9d66f05f4d (patch) | |
tree | 705ed73003ca80eabc12975a474849190e435a55 | |
parent | 702a41ce231999c8343b5c43100211bfc9dab4b5 (diff) | |
download | pleroma-e574408b33a198ecabd035bbfbecaf9d66f05f4d.tar.gz |
CI: Run stages when .gitlab-ci.yml changes
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 718524aee..ff9f1ec16 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -35,6 +35,7 @@ build: stage: build only: changes: + - ".gitlab-ci.yml" - "**/*.ex" - "**/*.exs" - "mix.lock" @@ -45,6 +46,7 @@ spec-build: stage: test only: changes: + - ".gitlab-ci.yml" - "lib/pleroma/web/api_spec/**/*.ex" - "lib/pleroma/web/api_spec.ex" artifacts: @@ -71,6 +73,7 @@ unit-testing: stage: test only: changes: + - ".gitlab-ci.yml" - "**/*.ex" - "**/*.exs" - "mix.lock" @@ -93,6 +96,7 @@ unit-testing-erratic: allow_failure: true only: changes: + - ".gitlab-ci.yml" - "**/*.ex" - "**/*.exs" - "mix.lock" @@ -129,6 +133,7 @@ unit-testing-rum: stage: test only: changes: + - ".gitlab-ci.yml" - "**/*.ex" - "**/*.exs" - "mix.lock" @@ -151,6 +156,7 @@ lint: stage: test only: changes: + - ".gitlab-ci.yml" - "**/*.ex" - "**/*.exs" - "mix.lock" @@ -168,6 +174,7 @@ analysis: stage: test only: changes: + - ".gitlab-ci.yml" - "**/*.ex" - "**/*.exs" - "mix.lock" @@ -180,6 +187,7 @@ cycles: image: elixir:1.11-alpine only: changes: + - ".gitlab-ci.yml" - "**/*.ex" - "**/*.exs" - "mix.lock" |