From 727db38b57baa5fb5a0d25ab151772709ac48767 Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Tue, 23 Nov 2021 06:42:30 +0100 Subject: [PATCH] CI: add windows-mingw64-build-step2-make job --- .gitlab-ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 90c0cbd61..b99d1b67f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -538,6 +538,31 @@ windows-mingw64-build-step1-configure: except: - tags +windows-mingw64-build-step2-make: + stage: build + needs: + - job: windows-mingw64-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=MINGW64 C:\tools\msys64\usr\bin\bash -l -c 'cd $CI_PROJECT_DIR && ci/mingw-make.sh' + cache: + key: windows-mingw64-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