Skip to content

Commit

Permalink
retry action doesn't support working-directory and set timeout minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
Konboi committed Sep 12, 2023
1 parent b87d864 commit c7a4834
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,13 @@ jobs:
uses: nick-fields/retry@v2
with:
max_attempts: 3
timeout_minutes: 5
retry_on: error
command: python -m pip install --upgrade pip && pip install -r test-requirements.txt
working-directory: ./e2e
command: |
cd ./e2e
python -m pip install wheel
python -m pip install --upgrade pip
pip install -r test-requirements.txt
- name: Preapre tests
run: |
launchable record build --name ${GITHUB_RUN_ID}
Expand All @@ -44,7 +48,6 @@ jobs:
run: |
python runner.py
working-directory: ./e2e
- uses: actions/checkout@v2
- name: slack notify
if: failure()
uses: rtCamp/action-slack-notify@v2
Expand Down

0 comments on commit c7a4834

Please sign in to comment.