Avoid extra jobs on nightly builds

This commit is contained in:
Imbris 2021-06-03 04:10:22 -04:00
parent ab5f0df06b
commit 2154893501
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: