-
Notifications
You must be signed in to change notification settings - Fork 83
47 lines (44 loc) · 1.57 KB
/
probe_load.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
name: probe_load
on:
push:
branches: [ main ]
pull_request:
env:
go_version: '~1.23'
CGO_ENABLED: '0'
jobs:
vm-test:
name: Run tests
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
tag:
- "stable"
- "6.6"
- "5.15"
- "5.10"
- "5.4"
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '${{ env.go_version }}'
- name: make docker-generate
run: make docker-generate
- name: verify output
run: make check-clean-work-tree
- name: Install vimto
run: go install lmb.io/vimto@latest
- name: Install qemu
run: |
sudo apt-get update && sudo apt-get install -y --no-install-recommends qemu-system-x86
sudo chmod 0666 /dev/kvm
- name: Test without verifier logs
id: no_verifier_logs_test
run: OTEL_GO_AUTO_SHOW_VERIFIER_LOG=false vimto -kernel :${{ matrix.tag }} -- go test -v -count=1 -tags=multi_kernel_test go.opentelemetry.io/auto/internal/pkg/instrumentation
- name: Test with verifier logs
run: OTEL_GO_AUTO_SHOW_VERIFIER_LOG=true vimto -kernel :${{ matrix.tag }} -- go test -v -count=1 -tags=multi_kernel_test go.opentelemetry.io/auto/internal/pkg/instrumentation
if: always() && steps.no_verifier_logs_test.outcome == 'failure'