Skip to content

Commit

Permalink
ci: add timeout for executing cleanup.sh (#4321)
Browse files Browse the repository at this point in the history
Signed-off-by: zhangzujian <[email protected]>
  • Loading branch information
zhangzujian authored Jul 19, 2024
1 parent 0606d63 commit b2aec92
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-x86-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@ jobs:
done
- name: Cleanup
run: sh -x dist/images/cleanup.sh
run: timeout -k 10 180 sh -x dist/images/cleanup.sh

kube-ovn-ic-conformance-e2e:
name: Kube-OVN IC Conformance E2E
Expand Down Expand Up @@ -1573,7 +1573,7 @@ jobs:
run: make check-kube-ovn-pod-restarts

- name: Cleanup
run: sh -x dist/images/cleanup.sh
run: timeout -k 10 180 sh -x dist/images/cleanup.sh

no-ovn-lb-test:
name: Disable OVN LB Test
Expand Down Expand Up @@ -1623,7 +1623,7 @@ jobs:
run: make check-kube-ovn-pod-restarts

- name: Cleanup
run: sh -x dist/images/cleanup.sh
run: timeout -k 10 180 sh -x dist/images/cleanup.sh

no-np-test:
name: Disable Network Policy Test
Expand Down Expand Up @@ -1673,7 +1673,7 @@ jobs:
run: make check-kube-ovn-pod-restarts

- name: Cleanup
run: sh -x dist/images/cleanup.sh
run: timeout -k 10 180 sh -x dist/images/cleanup.sh

lb-svc-e2e:
name: LB Service E2E
Expand Down Expand Up @@ -1991,7 +1991,7 @@ jobs:
path: installation-compatibility-test-ko-log.tar.gz

- name: Cleanup
run: sh -x dist/images/cleanup.sh
run: timeout -k 10 180 sh -x dist/images/cleanup.sh

cilium-chaining-e2e:
name: Cilium Chaining E2E
Expand Down Expand Up @@ -2151,7 +2151,7 @@ jobs:
run: make check-kube-ovn-pod-restarts

- name: Cleanup
run: sh -x dist/images/cleanup.sh
run: timeout -k 10 180 sh -x dist/images/cleanup.sh

kube-ovn-ha-e2e:
name: Kube-OVN HA E2E
Expand Down Expand Up @@ -2284,7 +2284,7 @@ jobs:
run: make check-kube-ovn-pod-restarts

- name: Cleanup
run: sh -x dist/images/cleanup.sh
run: timeout -k 10 180 sh -x dist/images/cleanup.sh

kube-ovn-submariner-conformance-e2e:
name: Kube-OVN Submariner Conformance E2E
Expand Down Expand Up @@ -2377,7 +2377,7 @@ jobs:
run: make check-kube-ovn-pod-restarts

- name: Cleanup
run: sh -x dist/images/cleanup.sh
run: timeout -k 10 180 sh -x dist/images/cleanup.sh

iptables-vpc-nat-gw-conformance-e2e:
name: Iptables VPC NAT Gateway E2E
Expand Down

0 comments on commit b2aec92

Please sign in to comment.