Skip to content

Commit

Permalink
Fix the file merging
Browse files Browse the repository at this point in the history
  • Loading branch information
etpeterson committed Dec 13, 2023
1 parent f5aac5d commit 19f632b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,12 @@ jobs:
path: artifacts
- name: Merge fitting results
run: |
cat artifacts/Working_Data/test_output_*.csv > test_output.csv
head -n 1 $(ls artifacts/Working_Data/test_output_*.csv | head -n 1) > test_output.csv
tail -q -n +2 test_output_*.csv > test_output.csv
- name: Merge timing results
run: |
cat artifacts/Working_Data/test_duration_*.csv > test_duration.csv
head -n 1 $(ls artifacts/Working_Data/test_duration_*.csv | head -n 1) > test_duration.csv
tail -q -n +2 test_duration_*.csv > test_duration.csv
- name: Upload merged artifacts
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 19f632b

Please sign in to comment.