Adds a debug-arm64 matrix entry to the test job that builds in Debug with -DMSAN_TOOLCHAIN_PATH=/opt/msan on an ubuntu-latest-arm64 runner, so the MSan fuzz tests (conflict_set_msan_*) now run on arm.
The arm instrumented libc++ toolchain (msan-toolchain-22.1.8) is built against LLVM 22, so this entry installs clang-22 from apt.llvm.org; the existing amd64 entries continue to use clang-21 with the 21.1.8 toolchain. MSan requires the instrumented libc++ and the compiler's MSan runtime to come from the same LLVM release line, so the versions are matched per arch.
To support this, the test matrix is generalized with runner, arch, llvm_version, and msan_url fields, and the apt cache key, LLVM install step, and MSan toolchain download step are driven by those per-entry values.
Closes #73
Adds a `debug-arm64` matrix entry to the `test` job that builds in `Debug` with `-DMSAN_TOOLCHAIN_PATH=/opt/msan` on an `ubuntu-latest-arm64` runner, so the MSan fuzz tests (`conflict_set_msan_*`) now run on arm.
The arm instrumented libc++ toolchain (`msan-toolchain-22.1.8`) is built against LLVM 22, so this entry installs `clang-22` from apt.llvm.org; the existing amd64 entries continue to use `clang-21` with the `21.1.8` toolchain. MSan requires the instrumented libc++ and the compiler's MSan runtime to come from the same LLVM release line, so the versions are matched per arch.
To support this, the `test` matrix is generalized with `runner`, `arch`, `llvm_version`, and `msan_url` fields, and the apt cache key, LLVM install step, and MSan toolchain download step are driven by those per-entry values.
CI / test (arm64, -DCMAKE_BUILD_TYPE=Debug -DMSAN_TOOLCHAIN_PATH=/opt/msan, 22, https://minio.weaselab.dev/public/aarch64/msan-toolchain-22.1.8.tar.zst, debug-arm64, ubuntu-latest-arm64) (pull_request) Successful in 3m53s
CI / test (amd64, -DCMAKE_BUILD_TYPE=Debug -DMSAN_TOOLCHAIN_PATH=/opt/msan, 21, https://minio.weaselab.dev/public/x86_64/msan-toolchain-21.1.8.tar.zst, debug, ubuntu-latest-amd64) (pull_request) Successful in 3m50s
Add a debug-arm64 matrix entry to the test job that runs the MSan
fuzz tests on an arm64 runner. The arm instrumented libc++ toolchain
(22.1.8) is built against LLVM 22, so this entry installs clang-22
from apt.llvm.org while the existing amd64 entries keep clang-21.
Generalize the test job matrix with runner/arch/llvm_version/msan_url
fields so the runner, apt cache key, LLVM toolchain version, and MSan
toolchain download URL are selected per matrix entry.
Closes#73
weaselbot
requested review from andrew 2026-08-03 03:28:55 +00:00
andrew
merged commit b0e326aacc into main2026-08-03 12:27:50 +00:00
andrew
deleted branch weaselbot/issue-732026-08-03 12:27:51 +00:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Closes #73
Adds a
debug-arm64matrix entry to thetestjob that builds inDebugwith-DMSAN_TOOLCHAIN_PATH=/opt/msanon anubuntu-latest-arm64runner, so the MSan fuzz tests (conflict_set_msan_*) now run on arm.The arm instrumented libc++ toolchain (
msan-toolchain-22.1.8) is built against LLVM 22, so this entry installsclang-22from apt.llvm.org; the existing amd64 entries continue to useclang-21with the21.1.8toolchain. MSan requires the instrumented libc++ and the compiler's MSan runtime to come from the same LLVM release line, so the versions are matched per arch.To support this, the
testmatrix is generalized withrunner,arch,llvm_version, andmsan_urlfields, and the apt cache key, LLVM install step, and MSan toolchain download step are driven by those per-entry values.