File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ concurrency:
30
30
jobs :
31
31
test :
32
32
if : " !contains(github.event.head_commit.message, 'skip ci')"
33
- name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
33
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
34
34
runs-on : ${{ matrix.os }}
35
35
strategy :
36
36
fail-fast : false
@@ -41,14 +41,11 @@ jobs:
41
41
- ubuntu-latest
42
42
- macos-latest
43
43
- windows-latest
44
- arch :
45
- - x64
46
44
steps :
47
45
- uses : actions/checkout@v4
48
46
- uses : julia-actions/setup-julia@v2
49
47
with :
50
48
version : ${{ matrix.version }}
51
- arch : ${{ matrix.arch }}
52
49
- run : julia -e 'using InteractiveUtils; versioninfo(verbose=true)'
53
50
- uses : julia-actions/cache@v2
54
51
- uses : julia-actions/julia-buildpkg@v1
64
61
- uses : coverallsapp/github-action@v2
65
62
with :
66
63
github-token : ${{ secrets.GITHUB_TOKEN }}
67
- flag-name : run-${{ matrix.os }}-${{ matrix.version }}-${{ matrix.arch }}-${{ github.run_id }}
64
+ flag-name : run-${{ join( matrix.*, '-') }}
68
65
parallel : true
69
66
path-to-lcov : ./lcov.info
70
67
Original file line number Diff line number Diff line change 20
20
downgrade_test :
21
21
if : " !contains(github.event.head_commit.message, 'skip ci')"
22
22
# We could also include the Julia version as in
23
- # name: ${{ matrix.trixi_test }} - ${{ matrix.os }} - Julia ${{ matrix.version }} - ${{ matrix.arch }} - ${{ github.event_name }}
23
+ # name: ${{ matrix.trixi_test }} - ${{ matrix.os }} - Julia ${{ matrix.version }} - ${{ github.event_name }}
24
24
# to be more specific. However, that requires us updating the required CI tests whenever we update Julia.
25
- name : Downgrade ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
25
+ name : Downgrade ${{ matrix.os }} - ${{ github.event_name }}
26
26
runs-on : ${{ matrix.os }}
27
27
strategy :
28
28
fail-fast : false
@@ -31,14 +31,11 @@ jobs:
31
31
- ' 1.10'
32
32
os :
33
33
- ubuntu-latest
34
- arch :
35
- - x64
36
34
steps :
37
35
- uses : actions/checkout@v4
38
36
- uses : julia-actions/setup-julia@v2
39
37
with :
40
38
version : ${{ matrix.version }}
41
- arch : ${{ matrix.arch }}
42
39
- run : julia -e 'using InteractiveUtils; versioninfo(verbose=true)'
43
40
- uses : julia-actions/cache@v2
44
41
- uses : julia-actions/julia-downgrade-compat@v1
You can’t perform that action at this time.
0 commit comments