SCTP-LB-Sanity-CI-RH9 #56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SCTP-LB-Sanity-CI-RH9 | |
on: | |
schedule: | |
# Runs "At 23:00 UTC every day-of-week" | |
- cron: '0 23 * * *' | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
tags: | |
description: 'SCTP LB Sanity RedHat9' | |
jobs: | |
build: | |
name: sctp-lb-sanity-rh9 | |
runs-on: [self-hosted, redhat] | |
if: github.repository == 'loxilb-io/loxilb' | |
&& github.event.inputs.tagName == '' | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- run: | | |
cd cicd/sctplb/ | |
./config.sh | |
./validation.sh | |
./rmconfig.sh | |
cd - | |
- run: | | |
cd cicd/sctponearm/ | |
./config.sh | |
./validation.sh | |
./rmconfig.sh | |
cd - | |
- run: | | |
cd cicd/sctplbdsr/ | |
./config.sh | |
./validation.sh | |
./rmconfig.sh | |
cd - | |
- 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) | |
sudo docker rm $(sudo docker ps -a -q) | |
fi | |
sudo docker image rm ghcr.io/loxilb-io/loxilb:latest |