https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a9a22aeffeb195ae02c4e…
commit a9a22aeffeb195ae02c4ea9461b19ddf3fa63696
Author: Timo Kreuzer <timo.kreuzer(a)reactos.org>
AuthorDate: Sat Jul 10 13:27:55 2021 +0200
Commit: Timo Kreuzer <timo.kreuzer(a)reactos.org>
CommitDate: Sun Jul 11 21:45:29 2021 +0200
[GITHUB] Add MSVC Release builder
---
.github/workflows/build.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 27f7f3835f9..fbf6e3964f8 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -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