We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4840c9e commit 7cd4e01Copy full SHA for 7cd4e01
1 file changed
.github/workflows/build-check.yml
@@ -13,9 +13,13 @@ jobs:
13
strategy:
14
fail-fast: false
15
matrix:
16
- os:
17
- - ubuntu-latest
18
- - macos-latest
+ include:
+ - os: ubuntu-latest
+ cmake_args: ""
19
+ - os: macos-latest
20
21
+ - os: windows-latest
22
+ cmake_args: "-A x64"
23
24
steps:
25
- name: Checkout
@@ -45,7 +49,8 @@ jobs:
45
49
cmake -S . -B build \
46
50
-DCMAKE_BUILD_TYPE=Release \
47
51
-DCMAKE_INSTALL_PREFIX="$RUNNER_TEMP/install" \
48
- -DR_HOME="$(R RHOME)"
52
+ -DR_HOME="$(R RHOME)" \
53
+ ${{ matrix.cmake_args }}
54
55
- name: Build
- run: cmake --build build --parallel
56
+ run: cmake --build build --config Release --parallel
0 commit comments