Skip to content

Commit

Permalink
ci: retry logic for freebsd steps
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <[email protected]>
  • Loading branch information
crazy-max committed Jan 29, 2024
1 parent b12a5c9 commit 0abdc84
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,17 @@ jobs:
VBoxManage -v
-
name: Set up vagrant
run: |
vagrant up --no-tty
uses: nick-fields/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2.9.0
with:
timeout_minutes: 20
max_attempts: 5
command: |
vagrant up --no-tty
-
name: Test
run: |
vagrant up --provision-with=test
uses: nick-fields/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2.9.0
with:
timeout_minutes: 20
max_attempts: 5
command: |
vagrant up --provision-with=test

0 comments on commit 0abdc84

Please sign in to comment.