File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 :
You can’t perform that action at this time.
0 commit comments