From de4aff9956df878c417d9e79341aef60f5607a99 Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sat, 4 Jan 2025 17:29:51 -0500 Subject: [PATCH] Another try --- .github/workflows/windows.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 2e07f7966..a13cb360d 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -32,16 +32,13 @@ jobs: run: | mkdir build cd build - cmake -D CMAKE_BUILD_TYPE=Debug \ - -D CMAKE_INSTALL_PREFIX=C:\kokkos-install \ - -D Kokkos_ENABLE_THREADS=ON \ - .. - cmake --build . --target install -- -m + cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=C:\kokkos-install -DKokkos_ENABLE_THREADS=ON .. + cmake --build . --config RelWithDebInfo --target install -- -m - name: Configure ArborX run: | mkdir build cd build - 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 .. + cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="/EHsc /bigobj" -DKokkos_ROOT="C:\kokkos-install" ${{ steps.vcpkg.outputs.vcpkg-cmake-config }} -DKokkos_MAP_IMPORTED_CONFIG_DEBUG="RelWithDebInfo" -DARBORX_ENABLE_MPI=OFF -DARBORX_ENABLE_TESTS=ON -DARBORX_ENABLE_EXAMPLES=ON -DARBORX_ENABLE_BENCHMARKS=ON -DARBORX_ENABLE_HEADER_SELF_CONTAINMENT_TESTS=OFF .. - name: Build ArborX shell: bash run: |