Skip to content

Commit 13e2055

Browse files
committed
Install x86 julia when julia-wordsize is 32
1 parent bbba85c commit 13e2055

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
# If `julia-wordsize` is 64, then we set `arch` to `${{ runner.arch }}`, which
5353
# GitHub will automatically expand to the correct value (`x86_64` or `aarch64`)
5454
# based on the architecture of the underlying GitHub Runner (virtual machine).
55-
arch: ${{ github.ref == '32' && 'x86' || runner.arch }}
55+
arch: ${{ matrix.julia-wordsize == '32' && 'x86' || runner.arch }}
5656
- uses: julia-actions/cache@d10a6fd8f31b12404a54613ebad242900567f2b9 # v2.1.0
5757
- uses: julia-actions/julia-runtest@678da69444cd5f13d7e674a90cb4f534639a14f9 # v1.11.2
5858
with:

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
# If `julia-wordsize` is 64, then we set `arch` to `${{ runner.arch }}`, which
9393
# GitHub will automatically expand to the correct value (`x86_64` or `aarch64`)
9494
# based on the architecture of the underlying GitHub Runner (virtual machine).
95-
arch: ${{ github.ref == '32' && 'x86' || runner.arch }}
95+
arch: ${{ matrix.julia-wordsize == '32' && 'x86' || runner.arch }}
9696
- uses: julia-actions/cache@d10a6fd8f31b12404a54613ebad242900567f2b9 # v2.1.0
9797
- uses: julia-actions/julia-runtest@678da69444cd5f13d7e674a90cb4f534639a14f9 # v1.11.2
9898
with:

0 commit comments

Comments
 (0)