-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-enable retry around checkout for minimal-build (#27463)
This was disabled due to Wandalen/wretry.action#83 and should be fixed in v1.3.0
- Loading branch information
1 parent
5c24199
commit eec98e2
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,8 +35,14 @@ jobs: | |
image: connectedhomeip/chip-build-minimal:0.7.3 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- uses: Wandalen/[email protected] | ||
name: Checkout | ||
with: | ||
action: actions/[email protected] | ||
with: | | ||
token: ${{ github.token }} | ||
attempt_limit: 3 | ||
attempt_delay: 2000 | ||
- name: Checkout submodules | ||
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux | ||
- name: Configure and build All Clusters App | ||
|