mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
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:
commit
61cec869c1
@ -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}"
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user