Merge branch 'imbris/nightly-ci-improvement' into 'master'

Avoid extra jobs on nightly builds

See merge request veloren/veloren!2367
This commit is contained in:
Imbris 2021-06-03 20:54:16 +00:00
commit 61cec869c1
2 changed files with 5 additions and 2 deletions

View File

@ -10,6 +10,7 @@
- ".gitlab-ci.yml"
- "**/*.yml"
# TODO: appears unused
# like .recompile-branch but will run on master too
.recompile:
rules:
@ -24,6 +25,8 @@
.post-merge:
stage: build
rules:
- if: $CI_PIPELINE_SOURCE == "schedule"
when: never
- if: $CI_COMMIT_REF_NAME =~ /^master$/
changes:
- "**/*.{glsl,rs,ron,toml,vox,png}"

View File

@ -11,11 +11,11 @@
.release:
stage: build
rules:
- if: $CI_COMMIT_REF_NAME =~ /^master$/ || $CI_COMMIT_TAG =~ /^v[0-9]+\.[0-9]+\.[0-9]+/ || $CI_COMMIT_REF_NAME =~ /^r[0-9]+\.[0-9]+/
- if: $CI_PIPELINE_SOURCE != "schedule" && ($CI_COMMIT_REF_NAME =~ /^master$/ || $CI_COMMIT_TAG =~ /^v[0-9]+\.[0-9]+\.[0-9]+/ || $CI_COMMIT_REF_NAME =~ /^r[0-9]+\.[0-9]+/)
when: always
- when: never
# Template to only run if pushes to master or a tag happened
# Template to only run if pushes to master or a tag happened for scheduled builds
.release-nightly-tmp-fix-airshipper:
stage: build-nightly
rules: