-
Notifications
You must be signed in to change notification settings - Fork 122
45 lines (43 loc) · 1.16 KB
/
data-store-CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Data-Store-CI
on:
workflow_dispatch:
inputs:
testName:
description: 'Test Scenario Name for data store validation'
required: true
default: 'sconnect'
type: choice
options:
- sconnect
- tcplb
- sctplb
- cluster1
- cluster2
- cluster3
runsOn:
description: 'Machine type'
required: true
default: 'ubuntu-20.04'
type: choice
options:
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-24.04
jobs:
build:
name: data-store
runs-on: ${{ github.event.inputs.runsOn }}
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 lksctp-tools linux-tools-$(uname -r) bridge-utils iperf iproute2 nodejs socat
- run: |
cd cicd/data-store/
./test.sh ${{ github.event.inputs.testName }}
cd -