Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/ci.cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,10 @@ jobs:
fail-fast: false
matrix:
include:
- { compiler: "cl", build: "Debug", name: "CPU (Windows) (msvc, Debug)" }
- { compiler: "cl", build: "Release", name: "CPU (Windows) (msvc, Release)" }
- { compiler: "cl", build: "Debug", name: "CPU (Windows) (msvc 14.43, Debug)", tag: cuda12.9-cl14.43 }
- { compiler: "cl", build: "Release", name: "CPU (Windows) (msvc 14.43, Release)", tag: cuda12.9-cl14.43 }
- { compiler: "cl", build: "Debug", name: "CPU (Windows) (msvc 14.50, Debug)", tag: cuda13.2-cl14.50 }
- { compiler: "cl", build: "Release", name: "CPU (Windows) (msvc 14.50, Release)", tag: cuda13.2-cl14.50 }
#- { compiler: "clang++", build: "Debug", name: "CPU (Windows) (clang, Debug)" }
#- { compiler: "clang++", build: "Release", name: "CPU (Windows) (clang, Release)" }
#- { compiler: "clang-cl", build: "Debug", name: "CPU (Windows) (clang-cl, Debug)" }
Expand All @@ -163,8 +165,8 @@ jobs:
- name: Build and test CPU schedulers (Windows)
shell: pwsh
run: |
docker pull rapidsai/devcontainers:26.02-cuda12.9-cl14.43
docker run --isolation=process -v "$(pwd):C:/stdexec" rapidsai/devcontainers:26.02-cuda12.9-cl14.43 powershell C:/stdexec/.github/workflows/test-windows.ps1 -Compiler '${{ matrix.compiler }}' -Config '${{ matrix.build }}'
docker pull rapidsai/devcontainers:26.06-${{ matrix.tag }}-windows2022
docker run --isolation=process -v "$(pwd):C:/stdexec" rapidsai/devcontainers:26.06-${{ matrix.tag }}-windows2022 powershell C:/stdexec/.github/workflows/test-windows.ps1 -Compiler '${{ matrix.compiler }}' -Config '${{ matrix.build }}'

ci-cpu-windows:
runs-on: windows-latest
Expand Down
Loading