Skip to content

Commit

Permalink
fix: Update tester_output dirname after change to tester
Browse files Browse the repository at this point in the history
  • Loading branch information
itislu committed Jul 27, 2024
1 parent 03c8a31 commit 918116e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/regression_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
GH_BRANCH: SOURCE_FAILED_COUNT

- name: Save tester output to home directory
run: mv -f tester_output ${{ env.HOME }} || true
run: mv -f tester_output* ${{ env.HOME }}/tester_output || true

- name: 📝 Print all test cases that failed on source branch
run: ${{ env.SCRIPTS_DIR }}/print_all_failed_test_cases.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
GH_BRANCH: IGNORE
continue-on-error: true
- name: Save tester output to home directory
run: mv -f tester_output ${{ env.HOME }} || true
run: mv -f tester_output* ${{ env.HOME }}/tester_output || true
- name: 📝 Print all test cases that leaked on source branch
run: ${{ env.SCRIPTS_DIR }}/print_leak_test_cases.sh
env:
Expand Down

0 comments on commit 918116e

Please sign in to comment.