From a8104e822892dcf5e30d5d37ef78d47c93cf6bd4 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Tue, 14 Oct 2025 16:51:23 +1300 Subject: [PATCH] Re-enable x86 in CI Updated CI workflow to include 32-bit Linux testing. --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f7d46b..97d008a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,12 +18,11 @@ jobs: version: ['1.10', '1'] # Test against LTS and current minor release os: [ubuntu-latest, macOS-latest, windows-latest] arch: [x64] - # Upstream bug: https://github.com/JuliaIO/JSON.jl/issues/386 - # include: + include: # Also test against 32-bit Linux on LTS. - # - version: '1.10' - # os: ubuntu-latest - # arch: x86 + - version: '1.10' + os: ubuntu-latest + arch: x86 steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2