UDP-LB-Sanity-CI-Ubuntu-24 #95
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: UDP-LB-Sanity-CI-Ubuntu-24 | |
on: | |
schedule: | |
# Runs "At 11:00 UTC every day-of-week" | |
- cron: '0 11 * * *' | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
tags: | |
description: 'UDP LB Sanity Ubuntu 24' | |
workflow_run: | |
workflows: ["Docker-Multi-Arch"] | |
types: | |
- completed | |
jobs: | |
build: | |
name: udp-lb-sanity-ubuntu-24 | |
runs-on: ubuntu-24.04 | |
if: github.repository == 'loxilb-io/loxilb' | |
&& github.event.inputs.tagName == '' | |
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: sudo apt-get update | |
- run: sudo apt-get -y install linux-tools-$(uname -r) elfutils dwarves git libbsd-dev bridge-utils unzip build-essential bison flex iperf iproute2 nodejs socat ethtool | |
- run: | | |
cd cicd/udplb/ | |
./config.sh | |
./validation.sh | |
./rmconfig.sh | |
cd - |