Skip to content
Snippets Groups Projects
Verified Commit a2d98026 authored by Josch Morgenstern's avatar Josch Morgenstern
Browse files

[#47] add "RUN" variable

parent 83d7df5b
No related branches found
No related tags found
1 merge request!36Resolve "Windows-Runner: Nicht reproduzierbares Verhalten seit Update"
Pipeline #25205 failed
variables:
RUN:
value: "all"
description: "The tests that should run. Possible values: ubuntu, win10, all."
stages: stages:
- build - build
- deploy - deploy
build_ubuntu_gcc: build_ubuntu_gcc:
only:
variables:
- $RUN =~ /\bubuntu.*/i || $TARGET =~ /\ball.*/i
stage: build stage: build
tags: tags:
- ubuntu-gcc - ubuntu-gcc
...@@ -23,6 +31,9 @@ build_ubuntu_gcc: ...@@ -23,6 +31,9 @@ build_ubuntu_gcc:
expire_in: never expire_in: never
build_win10_msvc: build_win10_msvc:
only:
variables:
- $RUN =~ /\bwin10.*/i || $TARGET =~ /\ball.*/i
stage: build stage: build
tags: tags:
- win10-msvc - win10-msvc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment