From 1f1bd437fbde4f8d495d8ba210539f3e220b194f Mon Sep 17 00:00:00 2001 From: Tomasetti Romin Date: Wed, 7 Jan 2026 17:25:30 +0100 Subject: [PATCH] Add CPU (gcc 13, Debug) configuration to CI I'm seeing issues with later GCC compilers. So let's increase the coverage. --- .github/workflows/ci.cpu.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.cpu.yml b/.github/workflows/ci.cpu.yml index 5266fe8f1..cd588b763 100644 --- a/.github/workflows/ci.cpu.yml +++ b/.github/workflows/ci.cpu.yml @@ -26,6 +26,7 @@ jobs: - { name: "CPU (gcc 11, Release)", build: "Release", tag: gcc11-cuda12.9, cxxflags: "", } - { name: "CPU (gcc 11, Release, ASAN)", build: "Release", tag: gcc11-cuda12.9, cxxflags: "-fsanitize=address" } - { name: "CPU (gcc 12, Release, TSAN)", build: "Release", tag: gcc12-cuda12.9, cxxflags: "-fsanitize=thread" } + - { name: "CPU (gcc 13, Debug)", build: "Release", tag: gcc13-cuda12.9, cxxflags: "", } container: options: -u root image: rapidsai/devcontainers:26.02-cpp-${{ matrix.tag }}