File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -74,16 +74,16 @@ jobs:
74
74
mv build/coverage.info build/coverage-Linux-${{ matrix.use_mpi }}-${{ matrix.use_openmp }}-${{ matrix.use_smm }}-cpu.info
75
75
76
76
- name : Upload coverage data
77
- uses : actions/upload-artifact@v3
77
+ uses : actions/upload-artifact@v4
78
78
with :
79
- name : coverage-data
79
+ name : coverage-data-${{ matrix.use_mpi }}-${{ matrix.use_openmp }}-${{ matrix.use_smm }}-${{ matrix.mpi_suffix }}
80
80
path : build/coverage-*.info
81
81
82
82
- name : Upload coverage data (generated files)
83
- uses : actions/upload-artifact@v3
83
+ uses : actions/upload-artifact@v4
84
84
if : matrix.use_mpi == 'MPI=ON' && matrix.use_openmp == 'OPENMP=ON' && matrix.use_smm == 'SMM=blas' && matrix.mpi_suffix == 'openmpi'
85
85
with :
86
- name : coverage-data
86
+ name : coverage-data-${{ matrix.use_mpi }}-${{ matrix.use_openmp }}-${{ matrix.use_smm }}-${{ matrix.mpi_suffix }}-generated-files
87
87
path : |
88
88
build/src/dbcsr.h
89
89
build/src/tensors/dbcsr_tensor.h
@@ -202,7 +202,8 @@ jobs:
202
202
- name : Download coverage data
203
203
204
204
with :
205
- name : coverage-data
205
+ pattern : coverage-data-*
206
+ merge-multiple : true
206
207
207
208
- name : Combine coverage
208
209
run : |
@@ -213,7 +214,7 @@ jobs:
213
214
lcov --summary merged.info
214
215
215
216
- name : Upload merged HTML report
216
- uses : actions/upload-artifact@v3
217
+ uses : actions/upload-artifact@v4
217
218
with :
218
219
name : html-report
219
220
path : htmlcov
You can’t perform that action at this time.
0 commit comments