We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e357eb commit 02b0c21Copy full SHA for 02b0c21
.github/workflows/test-e2e-runtime.yaml
@@ -1,6 +1,8 @@
1
name: Func E2E Lifecycle Test
2
3
-on: [pull_request]
+on:
4
+ pull_request:
5
+ workflow_dispatch:
6
7
concurrency:
8
group: ci-e1e-${{ github.ref }}-1
@@ -30,7 +32,15 @@ jobs:
30
32
- name: Build
31
33
run: make
34
- name: E2E runtime for ${{ matrix.runtime }}
- run: make test-e2e-runtime runtime=${{ matrix.runtime }}
35
+ run: |
36
+ attempt=0
37
+ max_attempts=3
38
+ until [ $attempt -ge $max_attempts ]
39
+ do
40
+ attempt=$((attempt+1))
41
+ echo "------------------ Attempt $attempt for ${{matrix.runtime}} ------------------"
42
+ make test-e2e-runtime runtime=${{ matrix.runtime }} && break
43
+ echo "------------------ failed, retrying... ------------------"
44
- uses: codecov/codecov-action@v5
45
with:
46
files: ./coverage.txt
0 commit comments