diff options
author | Mark Felder <feld@feld.me> | 2021-06-02 12:00:45 -0500 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2021-06-02 12:03:34 -0500 |
commit | e06466a5327ca2fa3cb7abd5f130c0a8a6b6fe27 (patch) | |
tree | a22a139efe8644af00523ce1b649ac6026f470c5 | |
parent | e8de1005f2318bef651a50630cb130f65dad8d06 (diff) | |
download | pleroma-e06466a5327ca2fa3cb7abd5f130c0a8a6b6fe27.tar.gz |
Skip build, test, analysis/lint when we don't make code changes
-rw-r--r-- | .gitlab-ci.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 78e715d47..8b2f11153 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,6 +37,11 @@ after_script: build: stage: build + only: + changes: + - "**/*.ex" + - "**/*.exs" + - "mix.lock" script: - mix compile --force @@ -64,6 +69,11 @@ benchmark: unit-testing: stage: test + only: + changes: + - "**/*.ex" + - "**/*.exs" + - "mix.lock" retry: 2 cache: &testing_cache_policy <<: *global_cache_policy @@ -97,6 +107,11 @@ unit-testing: unit-testing-rum: stage: test + only: + changes: + - "**/*.ex" + - "**/*.exs" + - "mix.lock" retry: 2 cache: *testing_cache_policy services: @@ -115,12 +130,22 @@ unit-testing-rum: lint: stage: test + only: + changes: + - "**/*.ex" + - "**/*.exs" + - "mix.lock" cache: *testing_cache_policy script: - mix format --check-formatted analysis: stage: test + only: + changes: + - "**/*.ex" + - "**/*.exs" + - "mix.lock" cache: *testing_cache_policy script: - mix credo --strict --only=warnings,todo,fixme,consistency,readability |