Skip to content

Commit 52e2308

Browse files
committed
Don't fail on delete cluster
Don't fail on unsuccessful cluster deletion. This unnecessary make the jobs failing. Refs: lfn-cnti#2064 Signed-off-by: Martin Matyas <[email protected]>
1 parent 5e226f4 commit 52e2308

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/actions.yml

+4
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ jobs:
202202
kind delete cluster --name $CLUSTER
203203
docker container prune -f || true
204204
docker volume prune -f || true
205+
continue-on-error: true
205206

206207
chaos:
207208
name: Chaos & Oran Tests
@@ -401,6 +402,7 @@ jobs:
401402
docker container prune -f || true
402403
docker volume prune -f || true
403404
docker network prune -f || true
405+
continue-on-error: true
404406

405407
test_binary_microservice:
406408
name: Test Binary Without Source(microservice)
@@ -475,6 +477,7 @@ jobs:
475477
docker container prune -f || true
476478
docker volume prune -f || true
477479
docker network prune -f || true
480+
continue-on-error: true
478481

479482
test_binary_all:
480483
name: Test Binary Without Source(all)
@@ -549,6 +552,7 @@ jobs:
549552
docker container prune -f || true
550553
docker volume prune -f || true
551554
docker network prune -f || true
555+
continue-on-error: true
552556

553557
release:
554558
name: Publish Release

0 commit comments

Comments
 (0)