Skip to content

Commit eb84ab8

Browse files
committed
Another try
1 parent 852f6de commit eb84ab8

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/windows.yml

+13-4
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 \
35+
cmake -D CMAKE_INSTALL_PREFIX=C:\kokkos-install \
3736
-D Kokkos_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 -D CMAKE_BUILD_TYPE=Debug \
44+
-D CMAKE_CXX_FLAGS="/EHsc /bigobj"
45+
-D Kokkos_ROOT="C:\kokkos-install" \
46+
-D Kokkos_MAP_IMPORTED_CONFIG=""
47+
${{ steps.vcpkg.outputs.vcpkg-cmake-config }}
48+
-D ARBORX_ENABLE_MPI=OFF \
49+
-D ARBORX_ENABLE_TESTS=ON \
50+
-D ARBORX_ENABLE_EXAMPLES=ON \
51+
-D ARBORX_ENABLE_BENCHMARKS=ON \
52+
-D ARBORX_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)