Skip to content

Commit

Permalink
ci: Call tester with new --no-update flag
Browse files Browse the repository at this point in the history
  • Loading branch information
itislu authored and LeaYeh committed Aug 12, 2024
1 parent da59dbb commit 1b53e72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/regression_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: 🌱 Test source branch of pull request
run: |
make re CC=clang-12
${{ env.TESTER_DIR }}/tester.sh ${{ inputs.test_mode }} > ${{ env.HOME }}/source_test_result.txt
${{ env.TESTER_DIR }}/tester.sh --no-update ${{ inputs.test_mode }} > ${{ env.HOME }}/source_test_result.txt
env:
GH_BRANCH: SOURCE_FAILED_COUNT

Expand All @@ -66,7 +66,7 @@ jobs:
- name: 🎯 Test target branch of pull request
run: |
make re CC=clang-12
${{ env.TESTER_DIR }}/tester.sh ${{ inputs.test_mode }} > ${{ env.HOME }}/target_test_result.txt
${{ env.TESTER_DIR }}/tester.sh --no-update ${{ inputs.test_mode }} > ${{ env.HOME }}/target_test_result.txt
env:
GH_BRANCH: TARGET_FAILED_COUNT

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: 🔍 Check memory leaks
run: |
make re CC=clang-12
${{ env.TESTER_DIR }}/tester.sh va > ${{ env.HOME }}/leak_result.txt
${{ env.TESTER_DIR }}/tester.sh --no-update va > ${{ env.HOME }}/leak_result.txt
env:
GH_BRANCH: IGNORE
continue-on-error: true
Expand Down

0 comments on commit 1b53e72

Please sign in to comment.