-
Notifications
You must be signed in to change notification settings - Fork 0
167 lines (143 loc) · 5.64 KB
/
Copy pathlinux.yml
File metadata and controls
167 lines (143 loc) · 5.64 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
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
name: nsq
on:
push:
branches:
- master
- stable
pull_request:
branches:
- master
- stable
jobs:
nsq_test:
name: NSQ plugin (Go ${{ matrix.go }}, PHP ${{ matrix.php }}, OS ${{matrix.os}})
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
matrix:
php: ["8.5"]
go: [stable]
os: ["ubuntu-latest"]
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v7 # action page: <https://github.com/actions/setup-go>
with:
go-version: ${{ matrix.go }}
- name: Set up PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2 # action page: <https://github.com/shivammathur/setup-php>
with:
php-version: ${{ matrix.php }}
extensions: sockets
- name: Check out code
uses: actions/checkout@v7
- name: Get Composer Cache Directory
id: composer-cache
run: |
cd tests/php_test_files
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Init Composer Cache # Docs: <https://git.io/JfAKn#php---composer>
uses: actions/cache@v6
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ matrix.php }}-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install Composer dependencies
run: cd tests/php_test_files && composer update --prefer-dist --no-progress --ansi
- name: Init Go modules Cache # Docs: <https://git.io/JfAKn#go---modules>
uses: actions/cache@v6
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: |
cd tests
docker compose -f env/docker-compose.yaml up -d
sleep 30
mkdir ./coverage-ci
go test -timeout 20m -v -race -cover -tags=debug -failfast -coverpkg=github.com/roadrunner-server/nsq/v6/... -coverprofile=./coverage-ci/nsq.out -covermode=atomic jobs_nsq_test.go
docker compose -f env/docker-compose.yaml down
- name: Upload coverage artifact
uses: actions/upload-artifact@v7
with:
name: coverage-nsq
path: ./tests/coverage-ci/nsq.out
nsq_durability:
name: NSQ durability plugin (Go ${{ matrix.go }}, PHP ${{ matrix.php }}, OS ${{matrix.os}})
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
matrix:
php: ["8.5"]
go: [stable]
os: ["ubuntu-latest"]
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v7 # action page: <https://github.com/actions/setup-go>
with:
go-version: ${{ matrix.go }}
- name: Set up PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2 # action page: <https://github.com/shivammathur/setup-php>
with:
php-version: ${{ matrix.php }}
extensions: sockets
- name: Check out code
uses: actions/checkout@v7
- name: Get Composer Cache Directory
id: composer-cache
run: |
cd tests/php_test_files
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Init Composer Cache # Docs: <https://git.io/JfAKn#php---composer>
uses: actions/cache@v6
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ matrix.php }}-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install Composer dependencies
run: cd tests/php_test_files && composer update --prefer-dist --no-progress --ansi
- name: Init Go modules Cache # Docs: <https://git.io/JfAKn#go---modules>
uses: actions/cache@v6
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: |
cd tests
docker compose -f env/docker-compose.yaml up -d
sleep 30
mkdir ./coverage-ci
# No -race here: go-nsq's Producer has an internal data race in its reconnect path
# (triggered only on redial). The test is functionally correct; the non-durability
# suite runs under -race.
go test -timeout 20m -v -cover -tags=debug -failfast -coverpkg=github.com/roadrunner-server/nsq/v6/... -coverprofile=./coverage-ci/durability.out -covermode=atomic jobs_nsq_durability_test.go
docker compose -f env/docker-compose.yaml down
- name: Upload coverage artifact
uses: actions/upload-artifact@v7
with:
name: coverage-durability
path: ./tests/coverage-ci/durability.out
codecov:
name: Upload coverage to Codecov
runs-on: ubuntu-latest
needs: [nsq_test, nsq_durability]
steps:
- name: Download all coverage artifacts
uses: actions/download-artifact@v8
with:
pattern: coverage-*
merge-multiple: true
- name: Merge coverage files
run: |
echo "mode: atomic" > summary.txt
cat *.out | grep -v "^mode:" | awk '{ sub(/github\.com\/roadrunner-server\/nsq\/v[56]\//, ""); print }' >> summary.txt
- name: Upload to codecov
uses: codecov/codecov-action@v7 # Docs: <https://github.com/codecov/codecov-action>
with:
files: summary.txt
fail_ci_if_error: false