We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fd50397 + 1fdb70f commit 15cd61eCopy full SHA for 15cd61e
.github/workflows/test.yml
@@ -90,7 +90,7 @@ jobs:
90
integration:
91
name: Integration tests
92
runs-on: macos-11
93
- timeout-minutes: 40
+ timeout-minutes: 60
94
strategy:
95
matrix:
96
# GHA macOS is slow and flaky, so we only test a few YAMLS here.
@@ -163,9 +163,12 @@ jobs:
163
path: ~/Library/Caches/lima/download
164
key: ${{ runner.os }}-examples/${{ matrix.example }}
165
- name: Test
166
- env:
167
- EXAMPLE: ${{ matrix.example }}
168
- run: ./hack/test-example.sh examples/$EXAMPLE
+ uses: nick-invision/retry@v2
+ with:
+ timeout_minutes: 15
169
+ retry_on: error
170
+ max_attempts: 3
171
+ command: ./hack/test-example.sh examples/${{ matrix.example }}
172
173
artifacts-darwin:
174
name: Artifacts Darwin
0 commit comments