Skip to content

Commit

Permalink
downgrade retry action for gpu tests (#3251) (#3252)
Browse files Browse the repository at this point in the history
* downgrade retry action for gpu tests (#3251)

* Update gpu-tests.yml

* fix docker command

* fixup

---------

Co-authored-by: John lee <johnleenimh@gmail.com>
  • Loading branch information
vfdev-5 and leej3 committed May 23, 2024
1 parent 8db318b commit 0d8f3bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,13 @@ jobs:
- name: Run GPU Unit Tests
continue-on-error: false
uses: nick-fields/retry@v3
uses: nick-fields/retry@v2.9.0
with:
max_attempts: 5
timeout_minutes: 25
shell: bash
command: docker exec -t pthd /bin/bash -xec 'tests/run_gpu_tests.sh 2'
new_command_on_retry: docker exec -e USE_LAST_FAILED=1 -t pthd /bin/bash -xec 'tests/run_gpu_tests.sh 2'
command: docker exec -t pthd /bin/bash -xec 'bash tests/run_gpu_tests.sh 2'
new_command_on_retry: docker exec -e USE_LAST_FAILED=1 -t pthd /bin/bash -xec 'bash tests/run_gpu_tests.sh 2'

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 0d8f3bc

Please sign in to comment.