We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bf6706 commit ebe4c71Copy full SHA for ebe4c71
.github/workflows/test-e2e-runtime.yaml
@@ -24,7 +24,20 @@ jobs:
24
- name: Install Binaries
25
run: ./hack/install-binaries.sh
26
- name: Allocate Cluster
27
- run: ./hack/allocate.sh
+ run: |
28
+ attempt=0
29
+ max_attempts=5
30
+ until [ $attempt -ge $max_attempts ]
31
+ do
32
+ attempt=$((attempt+1))
33
+ echo "------------------ Attempt $attempt for ${{matrix.runtime}} ------------------"
34
+ ./hack/allocate.sh && break
35
+ echo "------------------ failed, retrying... ------------------"
36
+ if [ $attempt -ge $max_attempts ]; then
37
+ echo "------------------ max # of retries reached, exiting ------------------"
38
+ exit 1
39
+ fi
40
+ done
41
- name: Local Registry
42
run: ./hack/registry.sh
43
- name: Build
0 commit comments