mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 23:16:14 +01:00
Add Windows native static build using msvc to CI
This commit is contained in:
parent
42c77c7ac7
commit
097cd3a16b
@ -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
|
||||||
|
# aren’t 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
|
||||||
|
# aren’t 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:
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user