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

[#99] add mingw runner

parent 7d636b62
No related branches found
No related tags found
1 merge request!85Resolve "Add Runner for Windows / MinGW"
Pipeline #26444 failed
variables: variables:
RUN: RUN:
value: "all" value: "all"
description: "The tests that should run. Possible values: ubuntu, win, all." description: "The tests that should run. Possible values: ubuntu, win-msvc, win-mingw, all."
GIT_DEPTH: 1 GIT_DEPTH: 1
stages: stages:
...@@ -34,7 +34,7 @@ build_ubuntu_gcc: ...@@ -34,7 +34,7 @@ build_ubuntu_gcc:
build_win10_msvc: build_win10_msvc:
only: only:
variables: variables:
- $RUN =~ /\bwin.*/i || $RUN =~ /\ball.*/i - $RUN =~ /\bwin-msvc.*/i || $RUN =~ /\ball.*/i
stage: build stage: build
tags: tags:
- win10-msvc-cached - win10-msvc-cached
...@@ -51,6 +51,23 @@ build_win10_msvc: ...@@ -51,6 +51,23 @@ build_win10_msvc:
- cmake -DCMAKE_BUILD_TYPE=Debug .. - cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build . - cmake --build .
build_win10_mingw:
only:
variables:
- $RUN =~ /\bwin-mingw.*/i || $RUN =~ /\ball.*/i
stage: build
tags:
- win10-mingw-cached
variables:
GIT_SUBMODULE_STRATEGY: recursive
timeout: 10m
retry: 0
script:
- mkdir debug
- cd debug
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build .
deploy_doc_develop: deploy_doc_develop:
only: only:
variables: variables:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment