mirror of
https://github.com/reactos/reactos.git
synced 2025-02-20 15:35:04 +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:
|
||||
matrix:
|
||||
arch: [i386, amd64]
|
||||
buildtype: [Debug,Release]
|
||||
toolset: ['14.2', '14.1'] # VS 2019, 2017
|
||||
include:
|
||||
- arch: i386 # Not compiling on amd64 prompt
|
||||
|
@ -111,7 +112,7 @@ jobs:
|
|||
with:
|
||||
path: src
|
||||
- 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
|
||||
run: cmake --build build -- -k0
|
||||
- name: Generate ISOs
|
||||
|
|
Loading…
Reference in a new issue