-
Notifications
You must be signed in to change notification settings - Fork 14
321 lines (305 loc) · 10.5 KB
/
Copy pathbuild.yaml
File metadata and controls
321 lines (305 loc) · 10.5 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
name: Tests
on:
push:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
packages: read
jobs:
blazingmq-dependency:
name: Build BlazingMQ as a dependency
runs-on: ubuntu-24.04
outputs:
deps_cache_key: ${{ steps.cache-key.outputs.deps_cache_key }}
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- name: Compute dependency cache key
id: cache-key
run: echo "deps_cache_key=deps-${{ hashFiles('bin/clone-dependencies.sh') }}" >> $GITHUB_OUTPUT
- name: Try to get cached BlazingMQ build artifacts
id: cache-restore
uses: actions/cache/restore@v6
with:
path: blazingmq_artifacts.tar.gz
key: ${{ steps.cache-key.outputs.deps_cache_key }}
- name: Set up dependencies
if: steps.cache-restore.outputs.cache-hit != 'true'
run: |
sudo apt-get update
sudo apt-get install -qy build-essential \
gdb \
curl \
python3.10 \
cmake \
ninja-build \
pkg-config \
bison \
libfl-dev \
libbenchmark-dev \
libgtest-dev \
libgmock-dev \
libz-dev
- name: Create install directory for BlazingMQ and its dependencies
if: steps.cache-restore.outputs.cache-hit != 'true'
run: mkdir -p blazingmq_artifacts
- name: Skip building bison, google-benchmark, and googletest
if: steps.cache-restore.outputs.cache-hit != 'true'
run: |
mkdir -p thirdparty/{bison,google-benchmark,googletest}
mkdir -p build/{bison,google-benchmark,googletest}
touch thirdparty/bison/.complete
touch build/google-benchmark/.complete
touch build/googletest/.complete
- name: Build and install BlazingMQ and its dependencies
if: steps.cache-restore.outputs.cache-hit != 'true'
env:
DIR_INSTALL: 'blazingmq_artifacts'
run: /bin/bash bin/build-manylinux.sh
- name: Save built BlazingMQ build artifacts
if: steps.cache-restore.outputs.cache-hit != 'true'
run: tar czf blazingmq_artifacts.tar.gz blazingmq_artifacts
- name: Cache built BlazingMQ build artifacts
id: cache-save
if: steps.cache-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@v6
with:
path: blazingmq_artifacts.tar.gz
key: ${{ steps.cache-key.outputs.deps_cache_key }}
linux-check:
name: Test on Linux
needs: blazingmq-dependency
runs-on: ubuntu-24.04
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- name: Try to get cached BlazingMQ build artifacts
id: cache-restore
uses: actions/cache/restore@v6
with:
path: blazingmq_artifacts.tar.gz
key: ${{ needs.blazingmq-dependency.outputs.deps_cache_key }}
- name: Restore cached BlazingMQ build artifacts
run: tar xzf blazingmq_artifacts.tar.gz
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Create virtual environment
run: |
python3 -m venv venv
- name: Install Python dependencies
run: |
./venv/bin/python -m pip install --upgrade pip
./venv/bin/python -m pip install -r requirements-dev.txt
- name: Install package manager dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential \
gdb \
curl \
cmake \
cmake \
ninja-build \
pkg-config \
bison \
libfl-dev \
libbenchmark-dev \
libgtest-dev \
libgmock-dev \
libz-dev
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Start BlazingMQ broker
run: |
docker run -d --name bmqbrkr \
--network host \
-v ${{ github.workspace }}/tests/broker-config:/broker-config:ro \
ghcr.io/bloomberg/blazingmq:latest \
/usr/local/bin/bmqbrkr /broker-config
timeout 30 bash -c 'until nc -z localhost 30114; do sleep 1; done' \
|| (docker logs bmqbrkr; exit 1)
- name: Setup core dumps
run: |
sudo mkdir -p /cores
sudo chmod 777 /cores
echo "/cores/%e.%p.%s.%t" | sudo tee /proc/sys/kernel/core_pattern
- name: Build and run tests
env:
BMQ_BROKER_URI: tcp://localhost:30114
PREFIX: blazingmq_artifacts
PYTHON: ./venv/bin/python
PKG_CONFIG_PATH: /usr/lib/x86_64-linux-gnu/pkgconfig:/opt/bb/lib64/pkgconfig:./blazingmq_artifacts/lib64/pkgconfig
run: |
ulimit -c unlimited
make test-build && make test-install && make check
- name: Print backtrace from core dump
if: failure()
run: |
for core in /cores/*; do
if [ -f "$core" ]; then
echo "=== Backtrace from $core ==="
gdb -batch \
-ex "set print frame-arguments all" \
-ex "bt full" \
-ex "echo \n=== All threads ===\n" \
-ex "thread apply all bt" \
./venv/bin/python "$core"
fi
done
- name: Stop BlazingMQ broker
if: always()
run: docker rm -f bmqbrkr
lint-docs:
name: Lint and Docs
needs: blazingmq-dependency
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- name: Try to get cached BlazingMQ build artifacts
id: cache-restore
uses: actions/cache/restore@v6
with:
path: blazingmq_artifacts.tar.gz
key: ${{ needs.blazingmq-dependency.outputs.deps_cache_key }}
- name: Restore cached BlazingMQ build artifacts
run: tar xzf blazingmq_artifacts.tar.gz
- name: Set up Python 3.14
uses: actions/setup-python@v7
with:
python-version: "3.14"
- name: Create virtual environment
run: |
python3 -m venv venv
- name: Install Python dependencies
run: |
./venv/bin/python -m pip install --upgrade pip
./venv/bin/python -m pip install -r requirements-dev.txt
- name: Set up dependencies
run:
sudo apt-get install clang-format
- name: Install Package
run: |
./venv/bin/python -m pip install -e .
env:
PREFIX: blazingmq_artifacts
PYTHON: ./venv/bin/python
PKG_CONFIG_PATH: /usr/lib/x86_64-linux-gnu/pkgconfig:/opt/bb/lib64/pkgconfig:./blazingmq_artifacts/lib64/pkgconfig
- name: Lint sources
env:
PYTHON: ./venv/bin/python
run: |
make lint
- name: Build docs
run: |
./venv/bin/python -m towncrier build --version 99.99 --name blazingmq --keep
make docs
env:
PYTHON: ./venv/bin/python
SPHINXBUILD: ../venv/bin/sphinx-build
coverage:
name: Coverage
needs: blazingmq-dependency
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- name: Try to get cached BlazingMQ build artifacts
id: cache-restore
uses: actions/cache/restore@v6
with:
path: blazingmq_artifacts.tar.gz
key: ${{ needs.blazingmq-dependency.outputs.deps_cache_key }}
- name: Restore cached BlazingMQ build artifacts
run: tar xzf blazingmq_artifacts.tar.gz
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: "3.14"
- name: Create virtual environment
run: |
python3 -m venv venv
- name: Install Python dependencies
run: |
./venv/bin/python3 -m pip install --upgrade pip
./venv/bin/python3 -m pip install -r requirements-dev.txt
- name: Setup Core Dumps config
run: |
sudo mkdir /cores
sudo chmod 777 /cores
echo "/cores/%e.%p.%s.%t" | sudo tee /proc/sys/kernel/core_pattern
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Start BlazingMQ broker
run: |
docker run -d --name bmqbrkr \
--network host \
-v ${{ github.workspace }}/tests/broker-config:/broker-config:ro \
ghcr.io/bloomberg/blazingmq:latest \
/usr/local/bin/bmqbrkr /broker-config
timeout 30 bash -c 'until nc -z localhost 30114; do sleep 1; done' \
|| (docker logs bmqbrkr; exit 1)
- name: Run tests with coverage
env:
BMQ_BROKER_URI: tcp://localhost:30114
PREFIX: blazingmq_artifacts
PYTHON: ./venv/bin/python
PKG_CONFIG_PATH: /usr/lib/x86_64-linux-gnu/pkgconfig:/opt/bb/lib64/pkgconfig:./blazingmq_artifacts/lib64/pkgconfig
run: |
# Allow core dumps
ulimit -c unlimited
make coverage-install && make coverage
- name: Stop BlazingMQ broker
if: always()
run: docker rm -f bmqbrkr
- name: Output code coverage summary
uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: coverage*.xml
- name: Upload broker logs as artifacts
if: failure()
run: |
mkdir -p bmq/logs
docker logs bmqbrkr > bmq/logs/broker_stdout.log 2> bmq/logs/broker_stderr.log || true
docker cp bmqbrkr:/var/local/bmq/logs/. bmq/logs/ || true
- uses: actions/upload-artifact@v7
if: failure()
with:
name: broker_logs
path: ./bmq/logs
retention-days: 5
compression-level: 9
- name: Upload broker core dump as artifacts
if: failure()
uses: actions/upload-artifact@v7
with:
name: core_dumps
path: /cores
retention-days: 5