name: github-windows on: workflow_call: concurrency: group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }}-win-x64 cancel-in-progress: ${{github.event_name == 'pull_request'}} permissions: read-all jobs: windows-cuda: # Cuda build on Windows name: Cuda VS-2022 runs-on: windows-2022 steps: - uses: Jimver/cuda-toolkit@6008063726ffe3309d1b22e413d9e88fed91a2f2 # v0.2.29 id: cuda-toolkit with: cuda: '12.4.1' - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: configure shell: bash run: | cmake -B build -DCMAKE_CUDA_FLAGS="-Xcompiler=-bigobj" -DBUILD_SHARED_LIBS=ON -DKokkos_ENABLE_CUDA=ON -DKokkos_ARCH_VOLTA70=ON -DKokkos_ENABLE_TESTS=ON -DKokkos_ENABLE_COMPILE_AS_CMAKE_LANGUAGE=ON - name: build library shell: bash run: | cmake --build build --parallel 4 --config Debug windows-serial: # Serial build on Windows name: Serial VS-2022 runs-on: windows-2025 steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: configure shell: bash run: | cmake -B build -DBUILD_SHARED_LIBS=ON -DKokkos_ENABLE_SERIAL=ON -DKokkos_ENABLE_TESTS=ON - name: build library shell: bash run: | cmake --build build --parallel 4 --config Release - name: run tests shell: bash run: | export PATH="$(pwd)/build/core/src/Release:$(pwd)/build/containers/src/Release:$PATH" ctest --test-dir build -C Release -j 4 --output-on-failure windows-clang: # Threads build on Windows using ClangCL name: Threads Clang VS-2022 runs-on: windows-2025 steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: configure shell: bash run: | cmake -B build -T ClangCL -DKokkos_ENABLE_SERIAL=ON -DKokkos_ENABLE_THREADS=ON -DKokkos_ENABLE_TESTS=ON - name: build library shell: bash run: | cmake --build build --parallel 4 --config Release - name: run tests shell: bash run: | ctest --test-dir build -C Release -j 4 --output-on-failure