Skip to content

Commit 29c19e9

Browse files
committed
Another try
1 parent 852f6de commit 29c19e9

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

.github/workflows/windows.yml

+14-5
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,27 @@ jobs:
3232
run: |
3333
mkdir build
3434
cd build
35-
cmake -D CMAKE_BUILD_TYPE=Debug \
36-
-D CMAKE_INSTALL_PREFIX=C:\kokkos-install \
37-
-D Kokkos_ENABLE_THREADS=ON \
35+
cmake -DCMAKE_INSTALL_PREFIX=C:\kokkos-install \
36+
-DKokkos_ENABLE_THREADS=ON \
3837
..
3938
cmake --build . --target install -- -m
4039
- name: Configure ArborX
4140
run: |
4241
mkdir build
4342
cd build
44-
cmake -DCMAKE_CXX_FLAGS="/EHsc /bigobj" -DKokkos_ROOT="C:\kokkos-install" -DARBORX_ENABLE_MPI=OFF -DARBORX_ENABLE_TESTS=ON -DARBORX_ENABLE_EXAMPLES=ON -DARBORX_ENABLE_BENCHMARKS=ON -DARBORX_ENABLE_HEADER_SELF_CONTAINMENT_TESTS=OFF ..
43+
cmake -DCMAKE_BUILD_TYPE=Debug \
44+
-DCMAKE_CXX_FLAGS="/EHsc /bigobj" \
45+
-DKokkos_ROOT="C:\kokkos-install" \
46+
-DKokkos_MAP_IMPORTED_CONFIG="" \
47+
${{ steps.vcpkg.outputs.vcpkg-cmake-config }} \
48+
-DARBORX_ENABLE_MPI=OFF \
49+
-DARBORX_ENABLE_TESTS=ON \
50+
-DARBORX_ENABLE_EXAMPLES=ON \
51+
-DARBORX_ENABLE_BENCHMARKS=ON \
52+
-DARBORX_ENABLE_HEADER_SELF_CONTAINMENT_TESTS=OFF \
53+
..
4554
- name: Build ArborX
4655
shell: bash
4756
run: |
48-
cmake --build build --config Debug --target install -- -m
57+
cmake --build build --target install -- -m
4958
cd build

0 commit comments

Comments
 (0)