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

Merge branch '47-windows-runner-nicht-reproduzierbares-verhalten-seit-update' into 'develop'

Resolve "Windows-Runner: Nicht reproduzierbares Verhalten seit Update"

Closes #47

See merge request !36
parents b69b166b 19f9e6e2
No related branches found
No related tags found
1 merge request!36Resolve "Windows-Runner: Nicht reproduzierbares Verhalten seit Update"
Pipeline #25257 passed
variables:
RUN:
value: "all"
description: "The tests that should run. Possible values: ubuntu, win, all."
GIT_DEPTH: 10
stages:
- build
- deploy
build_ubuntu_gcc:
only:
variables:
- $RUN =~ /\bubuntu.*/i || $RUN =~ /\ball.*/i
stage: build
tags:
- ubuntu-gcc
variables:
GIT_SUBMODULE_STRATEGY: recursive
timeout: 10m
retry: 1
script:
- mkdir debug
- cd debug
......@@ -21,11 +32,16 @@ build_ubuntu_gcc:
expire_in: never
build_win10_msvc:
only:
variables:
- $RUN =~ /\bwin.*/i || $RUN =~ /\ball.*/i
stage: build
tags:
- win10-msvc
variables:
GIT_SUBMODULE_STRATEGY: recursive
timeout: 10m
retry: 1
script:
- cd 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\'
- .\Launch-VsDevShell.ps1
......@@ -52,6 +68,9 @@ deploy_doc_develop:
- echo "Check it out at https://vkcv.de/develop"
deploy_doc_branch:
only:
variables:
- $RUN =~ /\bubuntu.*/i || $RUN =~ /\ball.*/i
except:
refs:
- develop
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment