-
Notifications
You must be signed in to change notification settings - Fork 4
85 lines (84 loc) · 2.92 KB
/
linux.yml
File metadata and controls
85 lines (84 loc) · 2.92 KB
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
name: otel
on: [push, pull_request]
jobs:
otel_plugin:
name: Build (Go ${{ matrix.go }}, OS ${{matrix.os}})
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: true
matrix:
go: [stable]
os: ["ubuntu-latest"]
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v6 # action page: <https://github.com/actions/setup-go>
with:
go-version: ${{ matrix.go }}
- name: Check out code
uses: actions/checkout@v6
- name: Init Go modules Cache # Docs: <https://git.io/JfAKn#go---modules>
uses: actions/cache@v5
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-
- name: Install Go dependencies
run: go mod download
- name: Install Temporal CLI (dev server)
run: |
curl -sSf https://temporal.download/cli.sh | sh
echo "$HOME/.temporalio/bin" >> "$GITHUB_PATH"
- name: Create coverage folder
run: mkdir ./tests/coverage-ci
- name: Run golang tests with coverage
env:
TEMPORAL_ADDRESS: 127.0.0.1:7233
run: |
temporal server start-dev --headless --ip 127.0.0.1 --port 7233 --log-level error &
SERVER_PID=$!
# wait for the Temporal frontend to accept connections
for i in $(seq 1 60); do
temporal operator cluster health --address 127.0.0.1:7233 >/dev/null 2>&1 && break
sleep 0.5
done
cd tests
go test -timeout 20m -v -race -cover -tags=debug -failfast -coverpkg=github.com/roadrunner-server/otel/v6/... -coverprofile=./coverage-ci/otel.out -covermode=atomic ./...
kill "$SERVER_PID" || true
- name: Archive code coverage results
uses: actions/upload-artifact@v7
with:
name: coverage
path: ./tests/coverage-ci
codecov:
name: Upload codecov
runs-on: ubuntu-latest
needs:
- otel_plugin
timeout-minutes: 60
steps:
- name: Check out code
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Download code coverage results
uses: actions/download-artifact@v8
with:
name: coverage
path: coverage
- run: |
echo 'mode: atomic' > summary.txt
tail -q -n +2 coverage/*.out >> summary.txt
awk '
NR == 1 { print; next }
/^github\.com\/roadrunner-server\/otel\/v6\// {
sub(/^github\.com\/roadrunner-server\/otel\/v6\//, "", $0)
print
}
' summary.txt > summary.filtered.txt
mv summary.filtered.txt summary.txt
- name: upload to codecov
uses: codecov/codecov-action@v6 # Docs: <https://github.com/codecov/codecov-action>
with:
files: summary.txt
fail_ci_if_error: false