PR: loxilb-io/kube-loxilb#169 Updated kube-loxilb yaml to conform to multiple CIDR pool support semantics #114
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: Sanity-CI-Ubuntu-24 | |
on: | |
schedule: | |
# Runs "At 11:00 UTC every day-of-week" | |
- cron: '0 11 * * *' | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
inputs: | |
testName: | |
description: 'Test Run-Name' | |
required: true | |
default: 'Sanity-BuildCI-u24' | |
workflow_run: | |
workflows: ["Docker-Multi-Arch"] | |
types: | |
- completed | |
jobs: | |
build: | |
name: basic-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 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/setup-python@v2 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '>=1.18.0' | |
- run: | | |
cd cicd/sconnect/ | |
./config.sh | |
./validation.sh | |
./rmconfig.sh | |
cd - | |
- run: | | |
cd cicd/tcplb/ | |
./config.sh | |
./validation.sh | |
./rmconfig.sh | |
cd - |