Skip to content

Commit 08f2efc

Browse files
Merge pull request #506 from TrekkieCoder/main
PR - Added local cicd runner script
2 parents 83f2c44 + e633bd2 commit 08f2efc

File tree

3 files changed

+132
-1
lines changed

3 files changed

+132
-1
lines changed

cicd/onearml2/config.sh

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ create_docker_host_vlan --host1 llb1 --host2 l2ep2 --ptype untagged --id 100
3535
create_docker_host_vlan --host1 llb1 --host2 l2ep3 --ptype untagged --id 100
3636

3737
$dexec llb1 bash -c 'for i in /proc/sys/net/ipv4/conf/*/rp_filter; do echo 0 > "$i"; done'
38+
$dexec llb1 bash -c 'for i in /proc/sys/net/ipv4/conf/*/arp_accept; do echo 1 > "$i"; done'
39+
$dexec llb1 brctl setageing vlan100 3600
3840

3941
sleep 5
4042

cicd/run_local_cicd.sh

+129
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
#!/bin/bash
2+
set -e
3+
4+
cd sconnect/
5+
./config.sh
6+
./validation.sh
7+
./rmconfig.sh
8+
cd -
9+
10+
cd tcplb/
11+
./config.sh
12+
./validation.sh
13+
./rmconfig.sh
14+
cd -
15+
16+
cd tcplbmark/
17+
./config.sh
18+
./validation.sh
19+
./rmconfig.sh
20+
cd -
21+
22+
cd tcplbdsr1/
23+
./config.sh
24+
./validation.sh
25+
./rmconfig.sh
26+
cd -
27+
28+
cd tcplbdsr2/
29+
./config.sh
30+
./validation.sh
31+
./rmconfig.sh
32+
cd -
33+
34+
cd tcplbl3dsr/
35+
./config.sh
36+
./validation.sh
37+
./rmconfig.sh
38+
cd -
39+
40+
cd tcplbhash/
41+
./config.sh
42+
./validation.sh
43+
./rmconfig.sh
44+
cd -
45+
46+
47+
cd sctplb/
48+
./config.sh
49+
./validation.sh
50+
./rmconfig.sh
51+
cd -
52+
53+
cd sctponearm/
54+
./config.sh
55+
./validation.sh
56+
./rmconfig.sh
57+
cd -
58+
59+
cd sctplbdsr/
60+
./config.sh
61+
./validation.sh
62+
./rmconfig.sh
63+
cd -
64+
65+
cd tcplbmon/
66+
./config.sh
67+
./validation.sh
68+
./rmconfig.sh
69+
cd -
70+
71+
cd udplbmon/
72+
./config.sh
73+
./validation.sh
74+
./rmconfig.sh
75+
cd -
76+
77+
cd sctplbmon/
78+
./config.sh
79+
./validation.sh
80+
./rmconfig.sh
81+
cd -
82+
83+
cd tcplbmon6/
84+
./config.sh
85+
./validation.sh
86+
./rmconfig.sh
87+
cd -
88+
89+
cd tcplbepmod/
90+
./config.sh
91+
./validation.sh
92+
./rmconfig.sh
93+
cd -
94+
95+
cd lbtimeout/
96+
./config.sh
97+
./validation.sh
98+
./rmconfig.sh
99+
cd -
100+
101+
cd lb6timeout/
102+
./config.sh
103+
./validation.sh
104+
./rmconfig.sh
105+
cd -
106+
107+
cd httpsep/
108+
./config.sh
109+
./validation.sh
110+
./rmconfig.sh
111+
cd -
112+
113+
cd http2ep/
114+
./config.sh
115+
./validation.sh
116+
./rmconfig.sh
117+
cd -
118+
119+
cd tcpsctpperf
120+
./config.sh
121+
./validation.sh 20 30
122+
./rmconfig.sh
123+
cd -
124+
125+
cd tcpepscale/
126+
./config.sh
127+
./validation.sh
128+
./rmconfig.sh
129+
cd -

loxilb-ebpf

0 commit comments

Comments
 (0)