From f865fd74b656835d6c59147faab509e1656f2871 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Mon, 9 Mar 2026 12:50:52 -0300 Subject: [PATCH 1/2] Fixup test filtering --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index ed8c38c7..dd6bd521 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -27,7 +27,7 @@ if filter_tests!(testsuite, args) delete!(testsuite, key) end - if LLVM.is_asserts() && test == "gcn" + if LLVM.is_asserts() delete!(testsuite, "gcn") end if VERSION < v"1.11" From 7ab458ecb6406e5aa4c8168f0fc3782028c62d91 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Mon, 9 Mar 2026 15:34:57 -0300 Subject: [PATCH 2/2] Unset LD_LIBRARY_PATH for CUDA tests --- .buildkite/pipeline.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 46045f1b..4b6ce0c6 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -6,6 +6,7 @@ steps: - JuliaCI/julia-coverage#v1: codecov: true command: | + unset LD_LIBRARY_PATH julia -e 'println("--- :julia: Instantiating project") using Pkg Pkg.develop(; path=pwd())