Add Windows native static build using msvc to CI

This commit is contained in:
Loïc Le Page 2022-01-14 17:01:16 +01:00 committed by Loic Le Page
parent 42c77c7ac7
commit 097cd3a16b
2 changed files with 31 additions and 3 deletions

View File

@ -332,7 +332,9 @@ vs2017-x64:
- win32-ps - win32-ps
needs: [] needs: []
script: script:
- .gitlab-ci/test-msvc.bat # FIXME: These should use --wrap-mode=nodownload but the Windows CI machines
# arent currently set up for that.
- .gitlab-ci/test-msvc.bat ${MESON_COMMON_OPTIONS} --wrap-mode=default
artifacts: artifacts:
reports: reports:
junit: "_build/${env:CI_JOB_NAME}-report.xml" junit: "_build/${env:CI_JOB_NAME}-report.xml"
@ -347,6 +349,25 @@ vs2017-x64:
- _build/gthread/libgthread-2.0-0.dll - _build/gthread/libgthread-2.0-0.dll
- _build/gobject/libgobject-2.0-0.dll - _build/gobject/libgobject-2.0-0.dll
vs2017-x64-static:
extends: .only-default
stage: build
tags:
- win32-ps
needs: []
script:
# FIXME: These should use --wrap-mode=nodownload but the Windows CI machines
# arent currently set up for that.
- .gitlab-ci/test-msvc.bat ${MESON_COMMON_OPTIONS} --wrap-mode=default --default-library=static
artifacts:
reports:
junit: "_build/${env:CI_JOB_NAME}-report.xml"
name: "glib-${env:CI_JOB_NAME}-${env:CI_COMMIT_REF_NAME}"
when: always
paths:
- _build/meson-logs
- "_build/${env:CI_JOB_NAME}-report.xml"
freebsd-12-x86_64: freebsd-12-x86_64:
stage: build stage: build
only: only:

View File

@ -2,11 +2,18 @@
:: vcvarsall.bat sets various env vars like PATH, INCLUDE, LIB, LIBPATH for the :: vcvarsall.bat sets various env vars like PATH, INCLUDE, LIB, LIBPATH for the
:: specified build architecture :: specified build architecture
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64
@echo on
:: Remove quotes from script args
setlocal enabledelayedexpansion
set args=
for %%x in (%*) do (
set args=!args! %%~x
)
set args=%args:~1%
:: FIXME: make warnings fatal :: FIXME: make warnings fatal
pip3 install --upgrade --user meson==0.52.0 || goto :error pip3 install --upgrade --user meson==0.52.0 || goto :error
meson _build || goto :error meson %args% _build || goto :error
ninja -C _build || goto :error ninja -C _build || goto :error
:: FIXME: dont ignore test errors :: FIXME: dont ignore test errors