File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 22
22
build :
23
23
# Skip CI if PR is a draft
24
24
if : github.event.pull_request.draft == false
25
+ name : build-${{matrix.os}}-${{matrix.cxx}}-mpi:${{matrix.mpi}}-openmp:${{matrix.omp}}
25
26
# The CMake configure and build commands are platform agnostic and should work equally
26
27
# well on Windows or Mac. You can convert this to a matrix build if you need
27
28
# cross-platform coverage.
@@ -127,13 +128,14 @@ jobs:
127
128
128
129
- uses : actions/upload-artifact@v4
129
130
with :
130
- name : dependencies
131
+ name : dependencies-${{ matrix.os }}-${{ matrix.cxx }}-${{ matrix.mpi }}-${{ matrix.omp }}
131
132
path : ${{github.workspace}}/local
132
133
133
134
134
135
test :
135
136
needs :
136
137
build
138
+ name : test-${{matrix.os}}-${{matrix.cxx}}-mpi:${{matrix.mpi}}-openmp:${{matrix.omp}}
137
139
runs-on : ${{matrix.os}}
138
140
env :
139
141
CC : ${{ matrix.cc }}
@@ -158,7 +160,7 @@ jobs:
158
160
159
161
- uses : actions/download-artifact@v4
160
162
with :
161
- name : dependencies
163
+ name : dependencies-${{ matrix.os }}-${{ matrix.cxx }}-${{ matrix.mpi }}-${{ matrix.omp }}
162
164
path : ${{github.workspace}}/local
163
165
164
166
- name : Install Dependencies on Ubunutu
@@ -216,7 +218,7 @@ jobs:
216
218
217
219
- uses : actions/download-artifact@v4
218
220
with :
219
- name : dependencies
221
+ name : dependencies-${{ matrix.os }}-${{ matrix.cxx }}-${{ matrix.mpi }}-${{ matrix.omp }}
220
222
path : ${{github.workspace}}/local
221
223
222
224
- name : Install Dependencies on Ubunutu
You can’t perform that action at this time.
0 commit comments