Skip to content

Commit 4d80631

Browse files
Use default arch in CI (#107)
1 parent e70717d commit 4d80631

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ concurrency:
3838
jobs:
3939
test:
4040
if: "!contains(github.event.head_commit.message, 'skip ci')"
41-
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
41+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
4242
runs-on: ${{ matrix.os }}
4343
strategy:
4444
fail-fast: false
@@ -49,18 +49,14 @@ jobs:
4949
- ubuntu-latest
5050
- macos-latest
5151
- windows-latest
52-
arch:
53-
- x64
5452
include:
5553
- version: '1.11'
5654
os: ubuntu-latest
57-
arch: x64
5855
steps:
5956
- uses: actions/checkout@v4
6057
- uses: julia-actions/setup-julia@v2
6158
with:
6259
version: ${{ matrix.version }}
63-
arch: ${{ matrix.arch }}
6460
- run: julia -e 'using InteractiveUtils; versioninfo(verbose=true)'
6561
- uses: julia-actions/cache@v2
6662
- uses: julia-actions/julia-buildpkg@v1
@@ -76,7 +72,7 @@ jobs:
7672
- uses: coverallsapp/github-action@v2
7773
with:
7874
github-token: ${{ secrets.GITHUB_TOKEN }}
79-
flag-name: run-${{ matrix.os }}-${{ matrix.version }}-${{ matrix.arch }}-${{ github.run_id }}
75+
flag-name: run-${{ join(matrix.*, '-') }}
8076
parallel: true
8177
path-to-lcov: ./lcov.info
8278

.github/workflows/Downgrade.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
downgrade_test:
2626
if: "!contains(github.event.head_commit.message, 'skip ci')"
2727
# We could also include the Julia version as in
28-
# name: ${{ matrix.trixi_test }} - ${{ matrix.os }} - Julia ${{ matrix.version }} - ${{ matrix.arch }} - ${{ github.event_name }}
28+
# name: ${{ matrix.os }} - Julia ${{ matrix.version }} - ${{ github.event_name }}
2929
# to be more specific. However, that requires us updating the required CI tests whenever we update Julia.
30-
name: Downgrade ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
30+
name: Downgrade ${{ matrix.os }} - ${{ github.event_name }}
3131
runs-on: ${{ matrix.os }}
3232
strategy:
3333
fail-fast: false
@@ -38,14 +38,11 @@ jobs:
3838
# - 'nightly'
3939
os:
4040
- ubuntu-latest
41-
arch:
42-
- x64
4341
steps:
4442
- uses: actions/checkout@v4
4543
- uses: julia-actions/setup-julia@v2
4644
with:
4745
version: ${{ matrix.version }}
48-
arch: ${{ matrix.arch }}
4946
- run: julia -e 'using InteractiveUtils; versioninfo(verbose=true)'
5047
- uses: julia-actions/cache@v2
5148
- uses: julia-actions/julia-downgrade-compat@v1

0 commit comments

Comments
 (0)