From 947944ea926eddcfea2b15b48edbe292b471a241 Mon Sep 17 00:00:00 2001 From: Frames White Date: Mon, 10 Jun 2024 17:02:31 +0800 Subject: [PATCH] exclude julia 1.6 x86 from CI This has been stocastically failing more often than not. The signal to noise ratio is too low and i have just been ignoring it for like a year. It is some julia or JuliaInterpetter bug being hit --- .github/workflows/CI.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3dbd33b33..64aae52bc 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,6 +20,9 @@ jobs: arch: - x86 - x64 + exclude: + - version: "1.6" + arch: x86 steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2