2020-05-15 13:34:52 +00:00
|
|
|
# Template to only run if actual changes has been made to the code and not just documentation
|
2020-06-03 08:31:05 +00:00
|
|
|
.recompile-branch:
|
2020-05-15 13:34:52 +00:00
|
|
|
rules:
|
2021-07-08 09:27:44 +00:00
|
|
|
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
|
2020-05-30 09:03:47 +00:00
|
|
|
# No '-' here is *very* important: https://docs.gitlab.com/ee/ci/yaml/#complex-rule-clauses
|
|
|
|
changes:
|
2022-08-19 15:29:47 +00:00
|
|
|
- "**/*.{glsl,png,rs,ron,ftl,toml,vox,yml,wav,sh}"
|
2020-05-15 13:34:52 +00:00
|
|
|
- "rust-toolchain"
|
2020-12-02 00:35:32 +00:00
|
|
|
- "Cargo.lock"
|
2020-05-22 16:11:58 +00:00
|
|
|
- ".gitlab-ci.yml"
|
2020-06-03 08:31:05 +00:00
|
|
|
|
2021-06-03 08:10:22 +00:00
|
|
|
# TODO: appears unused
|
2020-06-03 08:31:05 +00:00
|
|
|
# like .recompile-branch but will run on master too
|
|
|
|
.recompile:
|
|
|
|
rules:
|
|
|
|
- changes:
|
2022-08-19 15:29:47 +00:00
|
|
|
- "**/*.{glsl,png,rs,ron,ftl,toml,vox,yml,wav,sh}"
|
2020-06-03 08:31:05 +00:00
|
|
|
- "rust-toolchain"
|
2020-12-02 00:35:32 +00:00
|
|
|
- "Cargo.lock"
|
2022-08-19 15:29:47 +00:00
|
|
|
- ".gitlab-ci.yml"
|