-
Notifications
You must be signed in to change notification settings - Fork 92
171 lines (161 loc) · 4.34 KB
/
test.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
name: Test
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Build
run:
go build
- name: Generate edgevpnconfig
run: |
./edgevpn -g > config.yaml
- name: Upload results
uses: actions/upload-artifact@v4
with:
name: connection
path: config.yaml
if-no-files-found: error
- name: Upload results
uses: actions/upload-artifact@v4
with:
name: edgevpn
path: edgevpn
if-no-files-found: error
test-suite:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Download result for build
uses: actions/download-artifact@v4
with:
name: connection
path: ./
- name: Download result for build
uses: actions/download-artifact@v4
with:
name: edgevpn
path: ./
- name: Test suite
run: |
sudo sysctl -w net.core.rmem_max=2500000
chmod +x edgevpn
EDGEVPNCONFIG=config.yaml ./.github/tests.sh
- name: Codecov
uses: codecov/[email protected]
with:
file: coverage.txt
vpntest:
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
include:
- ip: "10.1.0.13/24"
target_ip: "10.1.0.11"
role: "download"
- ip: "10.1.0.11/24"
target_ip: "10.1.0.13"
role: ""
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download result for build
uses: actions/download-artifact@v4
with:
name: connection
path: ./
- name: Download result for build
uses: actions/download-artifact@v4
with:
name: edgevpn
path: ./
- name: Ping test
run: |
# Start caddy server to share file across nodes
docker run -d -p 80:80 \
-v $PWD/:/usr/share/caddy/ \
-v caddy_data:/data \
caddy
chmod +x edgevpn
sudo sysctl -w net.core.rmem_max=2500000
sudo EDGEVPNCONFIG=config.yaml IFACE=edgevpn0 ADDRESS=${{ matrix.ip }} ./edgevpn --api --log-level debug &
bash ./.github/vpntest.sh ${{ matrix.target_ip }} ${{ matrix.ip }} ${{ matrix.role }}
servicestest:
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
include:
- role: "expose"
- role: "connect"
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download result for build
uses: actions/download-artifact@v4
with:
name: connection
path: ./
- name: Download result for build
uses: actions/download-artifact@v4
with:
name: edgevpn
path: ./
- name: Services test
run: |
chmod +x edgevpn
export EDGEVPNCONFIG=config.yaml
sudo sysctl -w net.core.rmem_max=2500000
bash ./.github/servicestest.sh ${{ matrix.role }}
filestest:
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
include:
- role: "sender"
- role: "receiver"
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download result for build
uses: actions/download-artifact@v4
with:
name: connection
path: ./
- name: Download result for build
uses: actions/download-artifact@v4
with:
name: edgevpn
path: ./
- name: File test
run: |
chmod +x edgevpn
export EDGEVPNCONFIG=config.yaml
sudo sysctl -w net.core.rmem_max=2500000
bash ./.github/filetest.sh ${{ matrix.role }}