From 684910a6845598a1e109c53b15684671a5e122e4 Mon Sep 17 00:00:00 2001 From: Nikhil Malik <66406124+nik-netlox@users.noreply.github.com> Date: Tue, 13 Aug 2024 11:35:36 +0900 Subject: [PATCH] Create advanced-lb-sanity-ubuntu-24.yml --- .../advanced-lb-sanity-ubuntu-24.yml | 83 +++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 .github/workflows/advanced-lb-sanity-ubuntu-24.yml diff --git a/.github/workflows/advanced-lb-sanity-ubuntu-24.yml b/.github/workflows/advanced-lb-sanity-ubuntu-24.yml new file mode 100644 index 000000000..30673de08 --- /dev/null +++ b/.github/workflows/advanced-lb-sanity-ubuntu-24.yml @@ -0,0 +1,83 @@ +name: Adv-LB-Sanity-CI-Ubuntu-24 + +on: + #push: + # branches: + # - main + #pull_request: + # branches: [ "main" ] + workflow_dispatch: + inputs: + logLevel: + description: 'Log level' + required: true + default: 'warning' + tags: + description: 'Advanced LB Sanity ubuntu 24' + +jobs: + build: + name: advanced-lb-sanity-ubuntu-24 + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + - uses: actions/setup-python@v2 + - uses: actions/setup-go@v3 + with: + go-version: '>=1.18.0' + - run: | + cd cicd/k8slbsim/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd - + - run: | + cd cicd/onearml2/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd - + - run: | + cd cicd/ulcltcplb/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd - + - run: | + cd cicd/ulclsctplb/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd - + - run: | + cd cicd/tcptunlb/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd - + - run: | + cd cicd/sctptunlb/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd - + - run: | + cd cicd/wrrtcplb1/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd - + - run: | + cd cicd/wrrtcplb2/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd - + - run: | + cd cicd/nat64tcp/ + ./config.sh + ./validation.sh + ./rmconfig.sh + cd -