[gimp/wip/Jehan/gitlab-ci-win-32-bit] gitlab-ci: add native Windows 32-bit build with MSYS2.
- From: Jehan <jehanp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/wip/Jehan/gitlab-ci-win-32-bit] gitlab-ci: add native Windows 32-bit build with MSYS2.
- Date: Sat, 8 May 2021 13:06:40 +0000 (UTC)
commit 01b6b5929768a243d1285716eb24847080a5c21b
Author: Jehan <jehan girinstud io>
Date: Sat May 8 15:05:35 2021 +0200
gitlab-ci: add native Windows 32-bit build with MSYS2.
.gitlab-ci.yml | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c087d4719a..1bae9d05ca 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -242,6 +242,54 @@ gimp-win64-native:
- _ccache/
needs: ["deps-win64-native"]
+## WINDOWS 32-bit CI (native MSYS2) ##
+
+deps-win32-native:
+ rules:
+ - if: '$CI_COMMIT_TAG == null && $CI_PIPELINE_SOURCE != "schedule"'
+ stage: dependencies
+ variables:
+ MSYSTEM: "MINGW32"
+ CHERE_INVOKING: "yes"
+ tags:
+ - win32-ps
+ cache:
+ paths:
+ - _install/
+ script:
+ - C:\msys64\usr\bin\pacman --noconfirm -Syyuu
+ - C:\msys64\usr\bin\bash -lc "bash -x ./build/windows/gitlab-ci/build-deps-msys2.sh"
+ artifacts:
+ name: "${CI_JOB_NAME}-${CI_COMMIT_REF_SLUG}"
+ when: always
+ expire_in: 2 hours
+ paths:
+ - _install
+ needs: []
+
+gimp-win32-native:
+ rules:
+ - if: '$CI_COMMIT_TAG == null && $CI_PIPELINE_SOURCE != "schedule"'
+ stage: gimp
+ variables:
+ MSYSTEM: "MINGW32"
+ CHERE_INVOKING: "yes"
+ tags:
+ - win32-ps
+ script:
+ - C:\msys64\usr\bin\pacman --noconfirm -Syyuu
+ - C:\msys64\usr\bin\bash -lc "bash -x ./build/windows/gitlab-ci/build-gimp-msys2.sh"
+ artifacts:
+ name: "${CI_JOB_NAME}-${CI_COMMIT_REF_SLUG}"
+ when: always
+ expire_in: 1 day
+ paths:
+ - _install
+ cache:
+ paths:
+ - _ccache/
+ needs: ["deps-win32-native"]
+
## WINDOWS 64-bit CI (cross-build crossroad) ##
deps-win64:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]