CI: Add Windows 32-bit

v0.3.0-dev
Paul Hollinsky 2022-02-22 10:31:46 -05:00
parent d0d279fdad
commit d051d20db6
4 changed files with 29 additions and 3 deletions

View File

@ -5,7 +5,7 @@ stages:
build windows/x64: build windows/x64:
stage: build stage: build
script: script:
- CMD.EXE /C ci\build-windows.bat - CMD.EXE /C ci\build-windows64.bat
artifacts: artifacts:
when: always when: always
paths: paths:
@ -25,3 +25,27 @@ test windows/x64:
tags: tags:
- icsneo-windows - icsneo-windows
timeout: 3m timeout: 3m
build windows/x86:
stage: build
script:
- CMD.EXE /C ci\build-windows32.bat
artifacts:
when: always
paths:
- build
expire_in: 3 days
tags:
- icsneo-windows
test windows/x86:
stage: test
script:
- build\libicsneo-tests.exe
dependencies:
- build windows/x86
needs:
- build windows/x86
tags:
- icsneo-windows
timeout: 3m

View File

@ -1,5 +1,3 @@
call "%VCVARS64%"
REM clean intermediate directories REM clean intermediate directories
rmdir /s /q build rmdir /s /q build
mkdir build mkdir build

View File

@ -0,0 +1,2 @@
call "%VCVARS32%"
call "ci\build-windows.bat"

View File

@ -0,0 +1,2 @@
call "%VCVARS64%"
call "ci\build-windows.bat"