mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[GITHUB] Add MSVC Release builder
This commit is contained in:
parent
aea4cfba55
commit
a9a22aeffe
1 changed files with 2 additions and 1 deletions
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
|
@ -78,6 +78,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
arch: [i386, amd64]
|
arch: [i386, amd64]
|
||||||
|
buildtype: [Debug,Release]
|
||||||
toolset: ['14.2', '14.1'] # VS 2019, 2017
|
toolset: ['14.2', '14.1'] # VS 2019, 2017
|
||||||
include:
|
include:
|
||||||
- arch: i386 # Not compiling on amd64 prompt
|
- arch: i386 # Not compiling on amd64 prompt
|
||||||
|
@ -111,7 +112,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
path: src
|
path: src
|
||||||
- name: Configure
|
- name: Configure
|
||||||
run: cmake -S src -B build -G Ninja -DCMAKE_TOOLCHAIN_FILE:FILEPATH=toolchain-msvc.cmake -DARCH:STRING=${{matrix.arch}} -DENABLE_ROSTESTS=1 -DENABLE_ROSAPPS=1
|
run: cmake -S src -B build -G Ninja -DCMAKE_TOOLCHAIN_FILE:FILEPATH=toolchain-msvc.cmake -DARCH:STRING=${{matrix.arch}} -DENABLE_ROSTESTS=1 -DENABLE_ROSAPPS=1 -DCMAKE_BUILD_TYPE=${{matrix.buildtype}}
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --build build -- -k0
|
run: cmake --build build -- -k0
|
||||||
- name: Generate ISOs
|
- name: Generate ISOs
|
||||||
|
|
Loading…
Reference in a new issue