From 1fe00dcec1c6c2c53ad26f976434937addc292c1 Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Sat, 2 May 2026 13:59:38 -0700 Subject: [PATCH] add cl-14.50 to the CPU CI test matrix --- .github/workflows/ci.cpu.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.cpu.yml b/.github/workflows/ci.cpu.yml index 7b353d97f..f4097e1ea 100644 --- a/.github/workflows/ci.cpu.yml +++ b/.github/workflows/ci.cpu.yml @@ -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)" } @@ -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