Skip to content

Commit

Permalink
workflow file for tcpkali longrun
Browse files Browse the repository at this point in the history
  • Loading branch information
nik-netlox committed Aug 28, 2024
1 parent e03fd46 commit c028fd5
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/tcpkali-longrun.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: TCPKALI-Longrun-CI
on:
#schedule:
# Runs "At 13:00 UTC every day-of-week"
#- cron: '0 13 * * *'
workflow_dispatch:
inputs:
testName:
description: 'Test Run-Name'
required: true
default: 'tcpkali-longrun'
jobs:
test-runner:
name: tcpkali-longrun
runs-on: [self-hosted, nd4]
#if: github.repository == 'loxilb-io/loxilb'
# && github.event.inputs.tagName == ''
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive

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

0 comments on commit c028fd5

Please sign in to comment.