Skip to content

Commit

Permalink
Merge pull request #386 from TrekkieCoder/main
Browse files Browse the repository at this point in the history
PR - Update k8s-calico.yml
  • Loading branch information
UltraInstinct14 authored Sep 2, 2023
2 parents 31d1ba8 + 88cba4a commit a9eab3e
Showing 1 changed file with 26 additions and 8 deletions.
34 changes: 26 additions & 8 deletions .github/workflows/k8s-calico.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,35 @@ jobs:
if: github.repository == 'loxilb-io/loxilb'
&& github.event.inputs.tagName == ''
steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- run: |

- name: Run the test
run: |
cd cicd/k8s-calico
./config.sh
./validation.sh
./rmconfig.sh
cd -
cd cicd/k8s-calico-ubuntu22
./config.sh
./validation.sh
./rmconfig.sh
cd -
- name: Clean test-bed
if: success() || failure()
run: |
cd cicd/k8s-calico || true
./rmconfig.sh
cd -
- name: Run the U22 test
run: |
cd cicd/k8s-calico-ubuntu22
./config.sh
./validation.sh
cd -
- name: Clean U22 test-bed
if: success() || failure()
run: |
cd cicd/k8s-calico-ubuntu22 || true
./rmconfig.sh
cd -

0 comments on commit a9eab3e

Please sign in to comment.