-
Notifications
You must be signed in to change notification settings - Fork 46
366 lines (331 loc) · 11.4 KB
/
build-and-test.yaml
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0
name: build-and-test
run-name: ${{ github.actor }} is running GitHub Actions
on:
push:
branches:
- main
pull_request:
paths:
env:
BENV_IMAGE: public.ecr.aws/u7d6c4a3/solarwinds-opentelemetry-network:benv-exp
concurrency:
group: build-and-test-${{ github.event.pull_request_number || github.ref }}
cancel-in-progress: true
jobs:
clang-format-check:
runs-on: ubuntu-20.04
name: clang-format-check
steps:
- name: Print github workspace
run: |
echo "github.workspace = ${{ github.workspace }}"
echo "pr.ref = ${{github.event.pull_request.head.ref}}"
echo "github.ref = ${{ github.ref }}"
echo "$GITHUB_CONTEXT"
- name: Check out the codebase
uses: actions/checkout@v3
- name: Get current date
id: date
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- name: Runs format checker
run: |
sudo apt update
sudo apt install -y clang-format-11
cd ${{ github.workspace }}
./.github/workflows/scripts/check-clang-format.sh
outputs:
date: ${{ steps.date.outputs.date }}
build-reducer:
name: build-reducer
runs-on: ubuntu-20.04
needs: [clang-format-check]
steps:
- name: Check out the codebase
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: build-reducer
env:
PASS: ${{ secrets.DOCKER_PASSWORD }}
run: |
echo "github.workspace = ${{ github.workspace }}"
docker pull $BENV_IMAGE
git submodule update --init --recursive
docker run -t \
--rm \
--mount "type=bind,source=/var/run/docker.sock,destination=/var/run/docker.sock" \
--mount "type=bind,source=$(git rev-parse --show-toplevel),destination=/root/src,readonly" \
--env EBPF_NET_SRC_ROOT=/root/src \
$BENV_IMAGE \
./build.sh reducer
build-kernel-collector:
name: build-kernel-collector
runs-on: ubuntu-20.04
needs: [clang-format-check]
steps:
- name: Check out the codebase
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: build-kernel-collector
env:
PASS: ${{ secrets.DOCKER_PASSWORD }}
run: |
echo "github.workspace = ${{ github.workspace }}"
docker pull $BENV_IMAGE
git submodule update --init --recursive
docker run -t \
--rm \
--mount "type=bind,source=/var/run/docker.sock,destination=/var/run/docker.sock" \
--mount "type=bind,source=$(git rev-parse --show-toplevel),destination=/root/src,readonly" \
--env EBPF_NET_SRC_ROOT=/root/src \
$BENV_IMAGE \
./build.sh kernel-collector
build-k8s-relay:
name: build-k8s-relay
runs-on: ubuntu-20.04
needs: [clang-format-check]
steps:
- name: Check out the codebase
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: build k8s-relay
run: |
echo "github.workspace = ${{ github.workspace }}"
docker pull $BENV_IMAGE
git submodule update --init --recursive
docker run -t \
--rm \
--mount "type=bind,source=/var/run/docker.sock,destination=/var/run/docker.sock" \
--mount "type=bind,source=$(git rev-parse --show-toplevel),destination=/root/src,readonly" \
--env EBPF_NET_SRC_ROOT=/root/src \
$BENV_IMAGE \
./build.sh k8s-relay
build-cloud-collector:
name: build-cloud-collector
runs-on: ubuntu-20.04
needs: [clang-format-check]
steps:
- name: Check out the codebase
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: build cloud-collector
run: |
echo "github.workspace = ${{ github.workspace }}"
docker pull $BENV_IMAGE
git submodule update --init --recursive
docker run -t \
--rm \
--mount "type=bind,source=/var/run/docker.sock,destination=/var/run/docker.sock" \
--mount "type=bind,source=$(git rev-parse --show-toplevel),destination=/root/src,readonly" \
--env EBPF_NET_SRC_ROOT=/root/src \
$BENV_IMAGE \
./build.sh cloud-collector
build-k8s-watcher:
name: build-k8s-watcher
runs-on: ubuntu-20.04
needs: [clang-format-check]
steps:
- name: Check out the codebase
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: build k8s-watcher
run: |
echo "github.workspace = ${{ github.workspace }}"
docker pull $BENV_IMAGE
git submodule update --init --recursive
docker run -t \
--rm \
--mount "type=bind,source=/var/run/docker.sock,destination=/var/run/docker.sock" \
--mount "type=bind,source=$(git rev-parse --show-toplevel),destination=/root/src,readonly" \
--env EBPF_NET_SRC_ROOT=/root/src \
$BENV_IMAGE \
./build.sh k8s-watcher
build-run-unit-tests:
name: build-run-unit-tests
runs-on: ubuntu-20.04
needs: [clang-format-check]
steps:
- name: Check out the codebase
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: run unit tests
run: |
echo "github.workspace = ${{ github.workspace }}"
docker pull $BENV_IMAGE
git submodule update --init --recursive
docker run -t \
--rm \
--mount "type=bind,source=/var/run/docker.sock,destination=/var/run/docker.sock" \
--mount "type=bind,source=$(git rev-parse --show-toplevel),destination=/root/src,readonly" \
--env EBPF_NET_SRC_ROOT=/root/src \
--env ARGS="--output-on-failure --repeat until-pass:3" \
--env SPDLOG_LEVEL="trace" \
$BENV_IMAGE \
./build.sh unit_tests test
build-run-unit-tests-with-asan-and-debug-flags:
name: build-run-unit-tests-with-asan-and-debug-flags
runs-on: ubuntu-20.04
needs: [clang-format-check]
steps:
- name: Check out the codebase
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: build unit tests with asan and debug flags on then run all tests
run: |
docker pull $BENV_IMAGE
git submodule update --init --recursive
docker run -t \
--rm \
--mount "type=bind,source=/var/run/docker.sock,destination=/var/run/docker.sock" \
--mount "type=bind,source=$(git rev-parse --show-toplevel),destination=/root/src,readonly" \
--env EBPF_NET_SRC_ROOT=/root/src \
--env ARGS="--output-on-failure --repeat until-pass:3" \
--env SPDLOG_LEVEL="trace" \
$BENV_IMAGE \
./build.sh --debug --asan unit_tests test
run-kernel-header-tests:
name: run-kernel-header-tests
needs: [clang-format-check]
runs-on: macos-13
env:
EBPF_NET_SRC_ROOT: ${{ github.workspace }}
steps:
- name: Check out the codebase
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: dorny/paths-filter@v2
id: changes
with:
filters: |
kernel:
- 'channel/**'
- 'cmake/**'
- 'collector/kernel/**'
- 'common/**'
- 'config/**'
- 'ext/**'
- 'geoip/**'
- 'jitbuf/**'
- 'otlp/**'
- 'platform/**'
- 'render/**'
- 'renderc/**'
- 'scheduling/**'
- 'test/kernel/**'
- 'util/**'
github:
- '.github/**'
- name: Run kernel header tests on multiple linux distributions
id: run-kernel-header-tests
if: steps.changes.outputs.kernel == 'true' || steps.changes.outputs.github == 'true'
run: |
sudo spctl --add /usr/local/bin/brew
# These following 4 lines are added to overcome brew link failures seen while executing brew update.
rm /usr/local/bin/2to3*
rm /usr/local/bin/idle*
rm /usr/local/bin/pydoc*
rm /usr/local/bin/python3*
brew update
brew install podman
sudo spctl --add /usr/local/bin/podman
podman machine init --rootful --cpus 3 --disk-size 14 --memory 12384
podman machine start
podman pull $BENV_IMAGE
podman machine ssh 'cat > /etc/containers/registries.conf.d/localhost.conf' <<EOF
[[registry]]
location = "localhost:5000"
insecure = true
EOF
podman machine ssh systemctl restart podman
podman container run -dt -p 5000:5000 --name registry docker.io/library/registry:2
podman info
git submodule update --init --recursive
podman run -t --rm \
--mount type=bind,source=$PWD,destination=/root/src,readonly \
--mount type=bind,source=/var/run/docker.sock,destination=/var/run/docker.sock \
--env EBPF_NET_SRC_ROOT=/root/src \
--name benv \
--privileged \
$BENV_IMAGE \
./build.sh -j 3 reducer-docker-registry kernel-collector-docker-registry
vagrant plugin install vagrant-sshfs
vagrant plugin install vagrant-scp
./test/kernel/run-tests.sh --kernel-header-test
run-kernel-collector-tests:
name: run-kernel-collector-tests
needs: [clang-format-check]
runs-on: macos-13
env:
EBPF_NET_SRC_ROOT: ${{ github.workspace }}
steps:
- name: Check out the codebase
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: dorny/paths-filter@v2
id: changes
with:
filters: |
kernel:
- 'channel/**'
- 'cmake/**'
- 'collector/kernel/**'
- 'common/**'
- 'config/**'
- 'ext/**'
- 'geoip/**'
- 'jitbuf/**'
- 'otlp/**'
- 'platform/**'
- 'render/**'
- 'renderc/**'
- 'scheduling/**'
- 'test/kernel/**'
- 'util/**'
github:
- '.github/**'
- name: Run kernel_collector_test on multiple linux distributions
id: run-kernel-collector-test
if: steps.changes.outputs.kernel == 'true' || steps.changes.outputs.github == 'true'
run: |
sudo spctl --add /usr/local/bin/brew
# These following 4 lines are added to overcome brew link failures seen while executing brew update.
rm /usr/local/bin/2to3*
rm /usr/local/bin/idle*
rm /usr/local/bin/pydoc*
rm /usr/local/bin/python3*
brew update
brew install podman
sudo spctl --add /usr/local/bin/podman
podman machine init --rootful --cpus 3 --disk-size 14 --memory 12348
podman machine start
podman pull $BENV_IMAGE
podman machine ssh 'cat > /etc/containers/registries.conf.d/localhost.conf' <<EOF
[[registry]]
location = "localhost:5000"
insecure = true
EOF
podman machine ssh systemctl restart podman
podman container run -dt -p 5000:5000 --name registry docker.io/library/registry:2
podman info
git submodule update --init --recursive
podman run -t --rm \
--mount type=bind,source=$PWD,destination=/root/src,readonly \
--mount type=bind,source=/var/run/docker.sock,destination=/var/run/docker.sock \
--env EBPF_NET_SRC_ROOT=/root/src \
--name benv \
--privileged \
$BENV_IMAGE \
./build.sh -j 3 kernel-collector-test-docker-registry
vagrant plugin install vagrant-sshfs
vagrant plugin install vagrant-scp
./test/kernel/run-tests.sh --kernel-collector-test