Skip to content

Commit 527c56d

Browse files
committed
testing
Signed-off-by: David Fridrich <fridrich.david19@gmail.com>
1 parent 7ce6373 commit 527c56d

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/test-e2e-runtime.yaml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Func E2E Lifecycle Test
22

3-
on: [pull_request]
3+
on:
4+
pull_request:
5+
workflow_dispatch:
46

57
concurrency:
68
group: ci-e1e-${{ github.ref }}-1
@@ -30,7 +32,15 @@ jobs:
3032
- name: Build
3133
run: make
3234
- name: E2E runtime for ${{ matrix.runtime }}
33-
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... ------------------"
3444
- uses: codecov/codecov-action@v5
3545
with:
3646
files: ./coverage.txt

0 commit comments

Comments
 (0)