From b3db251f75001da1d55236d1bcd35768580da9df Mon Sep 17 00:00:00 2001 From: Josh Morgenstern <josh@morgenstern.dev> Date: Mon, 19 Jul 2021 19:53:23 +0200 Subject: [PATCH] [#99] add mingw runner --- .gitlab-ci.yml | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 33b70018..dca74896 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ variables: RUN: 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 stages: @@ -34,7 +34,7 @@ build_ubuntu_gcc: build_win10_msvc: only: variables: - - $RUN =~ /\bwin.*/i || $RUN =~ /\ball.*/i + - $RUN =~ /\bwin-msvc.*/i || $RUN =~ /\ball.*/i stage: build tags: - win10-msvc-cached @@ -51,6 +51,23 @@ build_win10_msvc: - cmake -DCMAKE_BUILD_TYPE=Debug .. - 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: only: variables: -- GitLab