Skip to content

Commit

Permalink
Merge pull request loxilb-io#628 from TrekkieCoder/main
Browse files Browse the repository at this point in the history
cicd: cleanup fixes in gh-actions yml for redhat runner
  • Loading branch information
UltraInstinct14 authored Apr 9, 2024
2 parents c7e0c04 + 451f10b commit 37c2854
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/advanced-lb-sanity-rh9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ jobs:
- name: Clean test-bed
if: success() || failure()
run: |
sudo ip -all netns delete
dps=$(sudo docker ps -a -q)
if [[ x$dps != x ]]; then
sudo docker stop $(sudo docker ps -a -q)
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/basic-sanity-rh9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
- name: Clean test-bed
if: success() || failure()
run: |
sudo ip -all netns delete
dps=$(sudo docker ps -a -q)
if [[ x$dps != x ]]; then
sudo docker stop $(sudo docker ps -a -q)
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ipsec-sanity-rh9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
- name: Clean test-bed
if: success() || failure()
run: |
sudo ip -all netns delete
dps=$(sudo docker ps -a -q)
if [[ x$dps != x ]]; then
sudo docker stop $(sudo docker ps -a -q)
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/liveness-sanity-rh9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
- name: Clean test-bed
if: success() || failure()
run: |
sudo ip -all netns delete
dps=$(sudo docker ps -a -q)
if [[ x$dps != x ]]; then
sudo docker stop $(sudo docker ps -a -q)
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/scale-sanity-rh9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- name: Clean test-bed
if: success() || failure()
run: |
sudo ip -all netns delete
dps=$(sudo docker ps -a -q)
if [[ x$dps != x ]]; then
sudo docker stop $(sudo docker ps -a -q)
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sctp-sanity-rh9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
- name: Clean test-bed
if: success() || failure()
run: |
sudo ip -all netns delete
dps=$(sudo docker ps -a -q)
if [[ x$dps != x ]]; then
sudo docker stop $(sudo docker ps -a -q)
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tcp-sanity-rh9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
- name: Clean test-bed
if: success() || failure()
run: |
sudo ip -all netns delete
dps=$(sudo docker ps -a -q)
if [[ x$dps != x ]]; then
sudo docker stop $(sudo docker ps -a -q)
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/udp-sanity-rh9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- name: Clean test-bed
if: success() || failure()
run: |
sudo ip -all netns delete
dps=$(sudo docker ps -a -q)
if [[ x$dps != x ]]; then
sudo docker stop $(sudo docker ps -a -q)
Expand Down

0 comments on commit 37c2854

Please sign in to comment.