Change docker tags to a wpu specific tag

This commit is contained in:
Imbris 2021-03-20 00:54:57 -04:00 committed by Avi Weinstock
parent f2d97345e5
commit e7e9c16af4
3 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@
.publish:
stage: publish
tags:
- veloren-docker
- veloren-wgpu-docker
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PIPELINE_SOURCE != "schedule"
when: always

View File

@ -1,7 +1,7 @@
# Template to only run if actual changes has been made to the code and not just documentation
.recompile-branch:
tags:
- veloren-docker
- veloren-wgpu-docker
rules:
- if: $CI_COMMIT_REF_NAME !~ /^master$/
# No '-' here is *very* important: https://docs.gitlab.com/ee/ci/yaml/#complex-rule-clauses
@ -15,7 +15,7 @@
# like .recompile-branch but will run on master too
.recompile:
tags:
- veloren-docker
- veloren-wgpu-docker
rules:
- changes:
- "**/*.{glsl,rs,ron,toml,vox,png,wav}"

View File

@ -2,7 +2,7 @@
.optional-release:
stage: check
tags:
- veloren-docker
- veloren-wgpu-docker
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]+/ || $CI_PIPELINE_SOURCE == "schedule"
when: never
@ -13,7 +13,7 @@
.release:
stage: build
tags:
- veloren-docker
- veloren-wgpu-docker
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]+/
when: always