-
Notifications
You must be signed in to change notification settings - Fork 2
86 lines (75 loc) · 2.27 KB
/
linux.yml
File metadata and controls
86 lines (75 loc) · 2.27 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
86
name: fileserver
on:
push:
branches:
- master
- stable
pull_request:
branches:
- master
- stable
jobs:
fileserver_test:
name: FileServer plugin (Go ${{ matrix.go }}, OS ${{ matrix.os }})
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
matrix:
go: [stable]
os: ["ubuntu-latest"]
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
- name: Check out code
uses: actions/checkout@v6
- name: Init Go modules Cache
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: Run golang tests with coverage
run: |
mkdir ./coverage-ci
go test -timeout 20m -v -race -cover -tags=debug -failfast -coverpkg=github.com/roadrunner-server/fileserver/v6/... -coverprofile=./coverage-ci/fileserver.out -covermode=atomic ./...
- name: Archive code coverage results
uses: actions/upload-artifact@v7
with:
name: coverage-fileserver
path: ./coverage-ci
codecov:
name: Upload codecov
runs-on: ubuntu-latest
needs:
- fileserver_test
timeout-minutes: 60
steps:
- name: Check out code
uses: actions/checkout@v6
- name: Download code coverage results
uses: actions/download-artifact@v8
with:
pattern: coverage-*
path: coverage
merge-multiple: true
- name: Merge and filter coverage files
run: |
echo 'mode: atomic' > summary.txt
tail -q -n +2 coverage/*.out >> summary.txt
awk '
NR == 1 { print; next }
/^github\.com\/roadrunner-server\/fileserver\/v6\// {
sub(/^github\.com\/roadrunner-server\/fileserver\/v6\//, "", $0)
print
}
' summary.txt > summary.filtered.txt
mv summary.filtered.txt summary.txt
- name: upload to codecov
uses: codecov/codecov-action@v5
with:
files: summary.txt
fail_ci_if_error: false