File tree 1 file changed +22
-6
lines changed
1 file changed +22
-6
lines changed Original file line number Diff line number Diff line change 9
9
pull_request :
10
10
11
11
jobs :
12
+ setup :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - name : Checkout Repo
16
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
17
+ - name : Install build dependencies
18
+ run : sudo apt-get install -y clang llvm libbpf-dev
19
+ - name : Install Go
20
+ uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
21
+ with :
22
+ go-version : " ~1.23.1"
23
+ check-latest : true
24
+ - name : Run generate
25
+ run : make generate
26
+ - uses : actions/upload-artifact@v4
27
+ with :
28
+ name : repo
29
+ path : ./
12
30
test :
31
+ needs : setup
13
32
strategy :
14
33
matrix :
15
34
library :
23
42
- otelglobal
24
43
runs-on : ubuntu-latest
25
44
steps :
26
- - name : Checkout Repo
27
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
28
- - name : Install build dependencies
29
- run : sudo apt-get update && sudo apt-get install -y clang llvm libbpf-dev
30
- - name : Run generate
31
- run : make generate
45
+ - uses : actions/download-artifact@v4
46
+ with :
47
+ name : repo
32
48
- name : Clean
33
49
run : |
34
50
rm -f ./internal/test/e2e/${{ matrix.library }}/traces{,-orig}.json
You can’t perform that action at this time.
0 commit comments