Skip to content

Commit cb61767

Browse files
authored
Remove x86 CI (#2495)
* Remove x86 CI * Reorder name of test
1 parent 6f06e9f commit cb61767

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

.github/workflows/Tests.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
jobs:
1515
test:
1616
# Use matrix.test.name here to avoid it taking up the entire window width
17-
name: test ${{matrix.test.name}} (${{ matrix.runner.os }}, ${{ matrix.runner.version }}, ${{ matrix.runner.arch }}, ${{ matrix.runner.num_threads }})
17+
name: test ${{matrix.test.name}} (${{ matrix.runner.version }}, ${{ matrix.runner.os }}, ${{ matrix.runner.num_threads }})
1818
runs-on: ${{ matrix.runner.os }}
1919
continue-on-error: ${{ matrix.runner.version == 'pre' }}
2020

@@ -42,49 +42,36 @@ jobs:
4242
# Default
4343
- version: '1'
4444
os: ubuntu-latest
45-
arch: x64
46-
num_threads: 1
47-
# x86
48-
- version: '1'
49-
os: ubuntu-latest
50-
arch: x86
5145
num_threads: 1
5246
# Multithreaded
5347
- version: '1'
5448
os: ubuntu-latest
55-
arch: x64
5649
num_threads: 2
5750
# Windows
5851
- version: '1'
5952
os: windows-latest
60-
arch: x64
6153
num_threads: 1
6254
# macOS
6355
- version: '1'
6456
os: macos-latest
65-
arch: aarch64
6657
num_threads: 1
6758
# Minimum supported Julia version
6859
- version: 'min'
6960
os: ubuntu-latest
70-
arch: x64
7161
num_threads: 1
7262
# Minimum supported Julia version, multithreaded
7363
- version: 'min'
7464
os: ubuntu-latest
75-
arch: x64
7665
num_threads: 2
7766
# Pre-release Julia version
7867
- version: 'pre'
7968
os: ubuntu-latest
80-
arch: x64
8169
num_threads: 1
8270

8371
steps:
8472
- name: Print matrix variables
8573
run: |
8674
echo "OS: ${{ matrix.runner.os }}"
87-
echo "Architecture: ${{ matrix.runner.arch }}"
8875
echo "Julia version: ${{ matrix.runner.version }}"
8976
echo "Number of threads: ${{ matrix.runner.num_threads }}"
9077
echo "Test arguments: ${{ matrix.test.args }}"
@@ -95,7 +82,6 @@ jobs:
9582
- uses: julia-actions/setup-julia@v2
9683
with:
9784
version: '${{ matrix.runner.version }}'
98-
arch: ${{ matrix.runner.arch }}
9985
- uses: julia-actions/cache@v2
10086
- uses: julia-actions/julia-buildpkg@v1
10187
# TODO: Use julia-actions/julia-runtest when test_args are supported

0 commit comments

Comments
 (0)