forked from SumoLogic/sumologic-otel-collector
-
Notifications
You must be signed in to change notification settings - Fork 1
590 lines (514 loc) · 19 KB
/
pull_requests.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
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
name: PRs checks
on:
pull_request:
branches:
- '**'
defaults:
run:
shell: bash
jobs:
markdownlint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Check if related files changed
id: changed-files
uses: tj-actions/changed-files@v13
with:
files: |
**/*.md
- uses: actions/setup-ruby@v1
if: steps.changed-files.outputs.any_changed == 'true'
with:
ruby-version: '2.7'
- name: Install markdownlint
if: steps.changed-files.outputs.any_changed == 'true'
run: gem install mdl
- name: Markdownlint check
if: steps.changed-files.outputs.any_changed == 'true'
run: make markdownlint
yamllint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Install yamllint
run: pip install yamllint
- name: yamllint
run: make yamllint
markdown-link-check:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Check if related files changed
id: changed-files
uses: tj-actions/changed-files@v13
with:
files: |
**/*.md
- uses: gaurav-nelson/github-action-markdown-link-check@v1
if: steps.changed-files.outputs.any_changed == 'true'
with:
config-file: '.markdown_link_check.json'
md-links-lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Check if related files changed
id: changed-files
uses: tj-actions/changed-files@v13
with:
files: |
**/*.md
- name: Lint markdown links
if: steps.changed-files.outputs.any_changed == 'true'
run: |
make markdown-links-lint
plugins-check:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Install yq
run: |
sudo wget https://github.com/mikefarah/yq/releases/download/v4.12.1/yq_linux_amd64 -O /usr/bin/yq && sudo chmod +x /usr/bin/yq
- name: Check plugins in README and builder config
run: ./ci/plugins_check.sh
pre-commit-check:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: pre-commit/[email protected]
check-uniform-dependencies:
name: Check uniform dependencies
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Check uniform dependencies
run: make check-uniform-dependencies
shellcheck:
runs-on: ubuntu-20.04
env:
SHELLCHECK_VERSION: 0.8.0
steps:
- uses: actions/checkout@v3
- name: install shellcheck
run: |
curl --retry 10 --retry-max-time 120 --retry-delay 5 -Lo- https://github.com/koalaman/shellcheck/releases/download/v${{ env.SHELLCHECK_VERSION }}/shellcheck-v${{ env.SHELLCHECK_VERSION }}.linux.x86_64.tar.xz | tar -xJf -
sudo cp shellcheck-v${{ env.SHELLCHECK_VERSION }}/shellcheck /usr/local/bin && rm -rf shellcheck-v${{ env.SHELLCHECK_VERSION }}
- name: shellcheck
run: make shellcheck
test:
name: Test
runs-on: ${{ matrix.runs_on }}
strategy:
matrix:
include:
- arch_os: linux_amd64
runs_on: ubuntu-20.04
- arch_os: darwin_amd64
runs_on: macos-latest
- arch_os: windows_amd64
runs_on: windows-2022
builder_bin_path: '${RUNNER_TEMP}\bin'
builder_bin_ext: .exe
steps:
- uses: actions/checkout@v3
- name: Check if test related files changed
id: changed-files
uses: tj-actions/changed-files@v13
with:
files: |
**/go.mod
**/go.sum
**/*.go
**/*.yaml
**/*.yml
**/Makefile
**/Makefile.common
scripts/install.sh
- name: Setup go
if: steps.changed-files.outputs.any_changed == 'true'
uses: actions/setup-go@v3
with:
go-version: '1.19'
# As described in
# https://github.com/mvdan/github-actions-golang#how-do-i-set-up-caching-between-builds
- uses: actions/cache@v3
if: steps.changed-files.outputs.any_changed == 'true'
with:
path: |
/home/runner/go/pkg/mod
/home/runner/.cache/go-build
/Users/runner/go/pkg/mod
/Users/runner/Library/Caches/go-build
/c/Users/runneradmin/go/pkg/mod
/c/Users/runneradmin/AppData/Local/go-build
key: ${{matrix.arch_os}}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{matrix.arch_os}}-go-
- name: Set default BUILDER_BIN_PATH
if: steps.changed-files.outputs.any_changed == 'true'
run: echo "BUILDER_BIN_PATH=${HOME}/bin" >> $GITHUB_ENV
- name: Override BUILDER_BIN_PATH if set in matrix
if: matrix.builder_bin_path != '' && steps.changed-files.outputs.any_changed == 'true'
run: echo "BUILDER_BIN_PATH=${{matrix.builder_bin_path}}" >> $GITHUB_ENV
- name: Add opentelemetry-collector-builder installation dir to PATH
if: steps.changed-files.outputs.any_changed == 'true'
run: echo "$BUILDER_BIN_PATH" >> $GITHUB_PATH
- name: Run tests
if: steps.changed-files.outputs.any_changed == 'true'
run: make gotest
# pipeline to test using Go+BoringCrypto
test-go-boringcrypto:
name: Test
runs-on: ${{ matrix.runs_on }}
strategy:
matrix:
include:
- arch_os: linux_amd64
runs_on: ubuntu-20.04
go: [ '1.18.7b7' ]
steps:
- uses: actions/checkout@v3
- name: Check if test related files changed
id: changed-files
uses: tj-actions/changed-files@v13
with:
files: |
**/go.mod
**/go.sum
**/*.go
**/*.yaml
**/*.yml
**/Makefile
**/Makefile.common
scripts/install.sh
- name: Install Go+BoringCrypto
if: steps.changed-files.outputs.any_changed == 'true'
run: |
curl -LJ "https://go-boringcrypto.storage.googleapis.com/go${{ matrix.go }}.linux-amd64.tar.gz" -o go.linux-amd64.tar.gz \
&& sudo rm -rf /usr/local/go \
&& sudo tar -C /usr/local -xzf go.linux-amd64.tar.gz \
&& sudo rm go.linux-amd64.tar.gz \
&& sudo ln -s /usr/local/go/bin/go /usr/local/bin
# As described in
# https://github.com/mvdan/github-actions-golang#how-do-i-set-up-caching-between-builds
- uses: actions/cache@v3
if: steps.changed-files.outputs.any_changed == 'true'
with:
path: |
/home/runner/go/pkg/mod
/home/runner/.cache/go-build
/Users/runner/go/pkg/mod
/Users/runner/Library/Caches/go-build
key: ${{matrix.arch_os}}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{matrix.arch_os}}-go-
- name: Add opentelemetry-collector-builder installation dir to PATH
if: steps.changed-files.outputs.any_changed == 'true'
run: echo "$HOME/bin" >> $GITHUB_PATH
- name: Run tests
if: steps.changed-files.outputs.any_changed == 'true'
run: make gotest
test-wixext:
name: Test (SumoLogic.wixext)
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- name: Fetch current branch
run: ./ci/fetch_current_branch.sh
- name: Add msbuild to PATH
uses: microsoft/[email protected]
- name: Restore NuGet packages
working-directory: ./packaging/msi/SumoLogic.wixext/SumoLogicTests
run: nuget.exe restore -PackagesDirectory ../packages
- name: Build unit tests
working-directory: ./packaging/msi/SumoLogic.wixext/SumoLogicTests
run: msbuild.exe -p:Configuration=Release -p:Platform=AnyCPU -Restore
- name: Run unit tests
working-directory: ./packaging/msi/SumoLogic.wixext/SumoLogicTests/bin/Release
run: dotnet test -v:n ./SumoLogicTests.dll
lint:
name: Lint (golangci-lint)
runs-on: ubuntu-20.04
strategy:
matrix:
arch_os: [ 'linux_amd64' ]
steps:
- uses: actions/checkout@v3
- name: Check if files changed that need linting
id: changed-files
uses: tj-actions/changed-files@v13
with:
files: |
**/go.mod
**/go.sum
**/*.go
**/*.yaml
**/*.yml
**/Makefile
**/Makefile.common
- name: Setup go
if: steps.changed-files.outputs.any_changed == 'true'
uses: actions/setup-go@v3
with:
go-version: '1.19'
# As described in
# https://github.com/mvdan/github-actions-golang#how-do-i-set-up-caching-between-builds
- uses: actions/cache@v3
if: steps.changed-files.outputs.any_changed == 'true'
with:
path: |
/home/runner/go/pkg/mod
/home/runner/.cache/go-build
key: ${{matrix.arch_os}}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{matrix.arch_os}}-go-
- uses: actions/cache@v3
if: steps.changed-files.outputs.any_changed == 'true'
with:
path: |
/home/runner/.cache/golangci-lint
key: ${{matrix.arch_os}}-golangcilint-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{matrix.arch_os}}-golangcilint-
- name: Install golangci-lint
if: steps.changed-files.outputs.any_changed == 'true'
run: make install-golangci-lint
- name: Add opentelemetry-collector-builder installation dir to PATH
if: steps.changed-files.outputs.any_changed == 'true'
run: echo "$HOME/bin" >> $GITHUB_PATH
- name: Run golangci-lint
if: steps.changed-files.outputs.any_changed == 'true'
run: make golint
build:
name: Build
runs-on: ${{ matrix.runs_on }}
strategy:
matrix:
include:
- arch_os: linux_amd64
runs_on: ubuntu-20.04
- arch_os: linux_arm64
runs_on: ubuntu-20.04
- arch_os: darwin_amd64
runs_on: macos-latest
- arch_os: darwin_arm64
runs_on: macos-latest
- arch_os: windows_amd64
runs_on: windows-2022
builder_bin_path: '${RUNNER_TEMP}\bin'
builder_bin_ext: .exe
steps:
- uses: actions/checkout@v3
- name: Check if build related files changed
id: changed-files
uses: tj-actions/changed-files@v13
with:
files: |
otelcolbuilder/.gon_config.json
**/go.mod
**/go.sum
**/*.go
**/*.yaml
**/*.yml
**/Makefile
**/Makefile.common
**/Dockerfile*
- name: Fetch current branch
run: ./ci/fetch_current_branch.sh
- name: Setup go
if: steps.changed-files.outputs.any_changed == 'true'
uses: actions/setup-go@v3
with:
go-version: '1.19'
# As described in
# https://github.com/mvdan/github-actions-golang#how-do-i-set-up-caching-between-builds
- uses: actions/cache@v3
if: steps.changed-files.outputs.any_changed == 'true'
with:
path: |
/home/runner/go/pkg/mod
/home/runner/.cache/go-build
/Users/runner/go/pkg/mod
/Users/runner/Library/Caches/go-build
/c/Users/runneradmin/go/pkg/mod
/c/Users/runneradmin/AppData/Local/go-build
key: ${{matrix.arch_os}}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{matrix.arch_os}}-go-
- name: Set default BUILDER_BIN_PATH
run: echo "BUILDER_BIN_PATH=${HOME}/bin" >> $GITHUB_ENV
- name: Override BUILDER_BIN_PATH if set in matrix
run: echo "BUILDER_BIN_PATH=${{matrix.builder_bin_path}}" >> $GITHUB_ENV
if: matrix.builder_bin_path != ''
- name: Add opentelemetry-collector-builder installation dir to PATH
if: steps.changed-files.outputs.any_changed == 'true'
run: echo "$BUILDER_BIN_PATH" >> $GITHUB_PATH
- name: Install opentelemetry-collector-builder
if: steps.changed-files.outputs.any_changed == 'true'
run: make install-builder
working-directory: ./otelcolbuilder
- name: Build
if: steps.changed-files.outputs.any_changed == 'true'
run: make otelcol-sumo-${{matrix.arch_os}}
working-directory: ./otelcolbuilder
# TODO:
# Move that out to a separate job and run on a corresponding's OS runner.
# - name: Run the binary
# run: ./otelcol-sumo-${{matrix.arch_os}} --version
# working-directory: ./otelcolbuilder/cmd/
- name: Show included modules
if: steps.changed-files.outputs.any_changed == 'true'
working-directory: ./otelcolbuilder/cmd
run: |
go version -m otelcol-sumo-${{matrix.arch_os}}${{matrix.builder_bin_ext}} | \
grep -E "/(receiver|exporter|processor|extension)/"
- name: Store binary as action artifact
if: steps.changed-files.outputs.any_changed == 'true'
uses: actions/upload-artifact@v3
with:
name: otelcol-sumo-${{matrix.arch_os}}
path: ./otelcolbuilder/cmd/otelcol-sumo-${{matrix.arch_os}}${{matrix.builder_bin_ext}}
if-no-files-found: error
# pipeline to build FIPS compliance binary on Go+BoringCrypto for linux
build-fips:
name: Build
runs-on: ubuntu-20.04
strategy:
matrix:
go: [ '1.18.7b7' ]
arch_os: [ 'linux_amd64']
steps:
- uses: actions/checkout@v3
- name: Check if build related files changed
id: changed-files
uses: tj-actions/changed-files@v13
with:
files: |
otelcolbuilder/.gon_config.json
**/go.mod
**/go.sum
**/*.go
**/*.yaml
**/*.yml
**/Makefile
**/Makefile.common
**/Dockerfile*
- name: Fetch current branch
run: ./ci/fetch_current_branch.sh
- name: Install Go+BoringCrypto
if: steps.changed-files.outputs.any_changed == 'true'
run: |
curl -LJ "https://go-boringcrypto.storage.googleapis.com/go${{ matrix.go }}.linux-amd64.tar.gz" -o go.linux-amd64.tar.gz \
&& sudo rm -rf /usr/local/go \
&& sudo tar -C /usr/local -xzf go.linux-amd64.tar.gz \
&& sudo rm go.linux-amd64.tar.gz \
&& sudo ln -s /usr/local/go/bin/go /usr/local/bin
# As described in
# https://github.com/mvdan/github-actions-golang#how-do-i-set-up-caching-between-builds
- uses: actions/cache@v3
if: steps.changed-files.outputs.any_changed == 'true'
with:
path: |
/home/runner/go/pkg/mod
/home/runner/.cache/go-build
/Users/runner/go/pkg/mod
/Users/runner/Library/Caches/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Add opentelemetry-collector-builder installation dir to PATH
if: steps.changed-files.outputs.any_changed == 'true'
run: echo "$HOME/bin" >> $GITHUB_PATH
- name: Install opentelemetry-collector-builder
if: steps.changed-files.outputs.any_changed == 'true'
run: make install-builder
working-directory: ./otelcolbuilder
- name: Build
if: steps.changed-files.outputs.any_changed == 'true'
run: make otelcol-sumo-${{matrix.arch_os}} FIPS_SUFFIX="-fips" CGO_ENABLED=1
working-directory: ./otelcolbuilder
- name: Show included modules
if: steps.changed-files.outputs.any_changed == 'true'
working-directory: ./otelcolbuilder/cmd
run: |
go version -m otelcol-sumo-fips-${{matrix.arch_os}} | \
grep -E "/(receiver|exporter|processor|extension)/"
- name: Show BoringSSL symbols
if: steps.changed-files.outputs.any_changed == 'true'
working-directory: ./otelcolbuilder/cmd
run: |
go tool nm otelcol-sumo-fips-${{matrix.arch_os}} | \
grep "_Cfunc__goboringcrypto_"
- name: Store binary as action artifact
if: steps.changed-files.outputs.any_changed == 'true'
uses: actions/upload-artifact@v3
with:
name: otelcol-sumo-fips-${{matrix.arch_os}}
path: ./otelcolbuilder/cmd/otelcol-sumo-fips-${{matrix.arch_os}}
if-no-files-found: error
build-and-test-container-images:
name: Build container
runs-on: ubuntu-20.04
needs:
- build
- build-fips
strategy:
matrix:
arch_os: [ 'linux_amd64', 'linux_arm64']
steps:
- uses: actions/checkout@v3
- name: Check if build related files changed
id: changed-files
uses: tj-actions/changed-files@v13
with:
files: |
**/go.mod
**/go.sum
**/*.go
**/*.yaml
**/*.yml
**/Makefile
**/Makefile.common
**/Dockerfile*
- name: Set up QEMU
if: steps.changed-files.outputs.any_changed == 'true'
uses: docker/[email protected]
- name: Set up Buildx
if: steps.changed-files.outputs.any_changed == 'true'
id: buildx
uses: docker/[email protected]
- name: Show Buildx platforms
if: steps.changed-files.outputs.any_changed == 'true'
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Download binary action artifact from build phase
if: steps.changed-files.outputs.any_changed == 'true'
uses: actions/download-artifact@v3
with:
name: otelcol-sumo-${{matrix.arch_os}}
path: artifacts/
- name: Build the container image
if: steps.changed-files.outputs.any_changed == 'true'
run: |
cp artifacts/otelcol-sumo-${{matrix.arch_os}} otelcol-sumo
make build-container-multiplatform \
PLATFORM=${{ matrix.arch_os }}
- name: Test built image
if: steps.changed-files.outputs.any_changed == 'true'
run: make test-built-image
- name: Download FIPS binary action artifact from build phase
if: steps.changed-files.outputs.any_changed == 'true' && matrix.arch_os == 'linux_amd64'
uses: actions/download-artifact@v3
with:
name: otelcol-sumo-fips-${{matrix.arch_os}}
path: artifacts/
- name: Build the FIPS container image
if: steps.changed-files.outputs.any_changed == 'true' && matrix.arch_os == 'linux_amd64'
run: |
cp artifacts/otelcol-sumo-fips-${{matrix.arch_os}} otelcol-sumo
make build-container-multiplatform \
PLATFORM=${{ matrix.arch_os }} LATEST_TAG_FIPS_SUFFIX="-fips"
- name: Test built FIPS image
if: steps.changed-files.outputs.any_changed == 'true' && matrix.arch_os == 'linux_amd64'
run: make test-built-image BUILD_TAG="latest-fips"