Skip to content

Commit

Permalink
cicd: cleanup fixes in gh-actions yml for redhat runner
Browse files Browse the repository at this point in the history
  • Loading branch information
TrekkieCoder committed Apr 9, 2024
1 parent c7e0c04 commit 451f10b
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 451f10b

Please sign in to comment.