From a59b6c5a701ebf872d9f45e5741fba1c0e637da5 Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Sun, 21 Nov 2021 15:08:47 +0100 Subject: [PATCH] CI: add windows-mingw32-build-step2-make job --- .gitlab-ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dd78d06cc..bffb603e5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -487,6 +487,31 @@ windows-mingw32-build-step1-configure: except: - tags +windows-mingw32-build-step2-make: + stage: build + needs: + - job: windows-mingw32-build-step1-configure + artifacts: true + script: + - choco config set cacheLocation choco-cache + - choco install --yes --no-progress msys2 + - $Env:build_system = "autotools" + - $Env:use_autogen = "yes" + - C:\tools\msys64\usr\bin\env MSYSTEM=MINGW32 C:\tools\msys64\usr\bin\bash -l -c 'cd $CI_PROJECT_DIR && ci/mingw-make.sh' + cache: + key: windows-mingw32-build-step2-make + paths: + - choco-cache + artifacts: + when: always + expire_in: 1 week + paths: + - GRAPHVIZ_VERSION + tags: + - windows + except: + - tags + windows-cygwin-build: stage: build needs: -- 2.40.0