Skip to content

Commit b98acfd

Browse files
Update analysis.yml
1 parent ced6ab6 commit b98acfd

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/analysis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: Upload raw data
7474
uses: actions/upload-artifact@v4
7575
with:
76-
name: Working_Data
76+
name: Working_Data_${{ matrix.algorithm }}_${{ matrix.SNR }}
7777
retention-days: 1
7878
path: |
7979
test_output_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv
@@ -90,12 +90,12 @@ jobs:
9090
path: artifacts
9191
- name: Merge fitting results
9292
run: |
93-
head -n 1 $(ls artifacts/Working_Data/test_output_*.csv | head -n 1) > test_output.csv
94-
tail -q -n +2 artifacts/Working_Data/test_output_*.csv >> test_output.csv
93+
head -n 1 $(ls artifacts/Working_Data_${{ matrix.algorithm }}_${{ matrix.SNR }}/test_output_*.csv | head -n 1) > test_output.csv
94+
tail -q -n +2 artifacts/Working_Data_${{ matrix.algorithm }}_${{ matrix.SNR }}/test_output_*.csv >> test_output.csv
9595
- name: Merge timing results
9696
run: |
97-
head -n 1 $(ls artifacts/Working_Data/test_duration_*.csv | head -n 1) > test_duration.csv
98-
tail -q -n +2 artifacts/Working_Data/test_duration_*.csv >> test_duration.csv
97+
head -n 1 $(ls artifacts/Working_Data_${{ matrix.algorithm }}_${{ matrix.SNR }}/test_duration_*.csv | head -n 1) > test_duration.csv
98+
tail -q -n +2 artifacts/Working_Data_${{ matrix.algorithm }}_${{ matrix.SNR }}/test_duration_*.csv >> test_duration.csv
9999
- name: Upload merged artifacts
100100
uses: actions/upload-artifact@v4
101101
with:

0 commit comments

Comments
 (0)