-
Notifications
You must be signed in to change notification settings - Fork 85
334 lines (296 loc) · 9.41 KB
/
ci-pr-validation.yml
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
name: PR validation
on:
pull_request:
branches: ['master']
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-tests:
name: Run unit tests
runs-on: ubuntu-22.04
timeout-minutes: 120
strategy:
matrix:
python:
- "3.10"
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Use Python ${{ matrix.python }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Run Test
run: |
./tests/run-unit-tests.sh
- name: Check license headers
run: |
npm run license:checkheader
validation-yarn:
name: Validation use yarn install
runs-on: ubuntu-22.04
timeout-minutes: 120
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Use yarn install
run: |
yarn install --ignore-scripts
macos-napi:
name: Build NAPI macos - Node ${{matrix.nodejs}} - ${{matrix.arch}}
runs-on: ${{ matrix.os }}
timeout-minutes: 3000
strategy:
fail-fast: false
matrix:
arch:
- x64
- arm64
nodejs:
- 18
python:
- "3.10"
include:
- arch: x64
os: macos-13
- arch: arm64
# macos-14 is used for arm64
os: macos-14
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.nodejs }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.nodejs }}
cache: 'npm'
- name: Use Python ${{ matrix.python }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Build Node binaries lib
run: |
if [ "${{ matrix.arch }}" = "x64" ]; then
export ARCH=x86_64
else
export ARCH=${{ matrix.arch }}
fi
pkg/mac/download-cpp-client.sh
npm install --ignore-scripts
npx node-pre-gyp configure --target_arch=${{ matrix.arch }}
npx node-pre-gyp build --target_arch=${{ matrix.arch }}
- name: Test loading Node binaries lib
run: |
node pkg/load_test.js
- name: Package Node binaries lib
run: |
npx node-pre-gyp package --target_arch=${{ matrix.arch }}
linux-napi:
name: Build NAPI ${{matrix.image}} - Node ${{matrix.nodejs}} - ${{matrix.cpu.platform}}
runs-on: ubuntu-22.04
timeout-minutes: 3000
strategy:
fail-fast: false
matrix:
image:
- 'linux_glibc'
- 'linux_musl'
nodejs:
- 18
cpu:
- {arch: 'x86_64', platform: 'x86_64'}
- {arch: 'aarch64', platform: 'arm64'}
steps:
- name: checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build Linux Docker image
uses: docker/build-push-action@v3
with:
file: ./pkg/linux/Dockerfile_${{matrix.image}}
load: true
tags: build:latest
platforms: linux/${{matrix.cpu.arch}}
build-args: |
PLATFORM=${{matrix.cpu.platform}}
ARCH=${{matrix.cpu.arch}}
NODE_VERSION=${{matrix.nodejs}}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Build and Test NAPI file
run: |
docker run -i -v $PWD:/pulsar-client-node build:latest \
/pulsar-client-node/pkg/linux/build-napi-inside-docker.sh
- name: Test NAPI file in linux_glibc containers
if: matrix.image == 'linux_glibc'
run: |
./tests/load-test.sh node:16-buster ${{matrix.cpu.platform}}
./tests/load-test.sh node:16-bullseye ${{matrix.cpu.platform}}
./tests/load-test.sh node:19-buster ${{matrix.cpu.platform}}
./tests/load-test.sh node:19-bullseye ${{matrix.cpu.platform}}
- name: Test NAPI file in linux_musl containers
if: matrix.image == 'linux_musl'
run: |
./tests/load-test.sh node:18-alpine3.15 ${{matrix.cpu.platform}}
./tests/load-test.sh node:16-alpine3.15 ${{matrix.cpu.platform}}
windows-napi:
name: Build NAPI windows - Node ${{matrix.nodejs}} - ${{matrix.arch}}
runs-on: windows-2022
timeout-minutes: 3000
strategy:
fail-fast: false
matrix:
arch:
- x64
- x86
nodejs:
- 18
python:
- "3.10"
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.nodejs }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.nodejs }}
architecture: ${{ matrix.arch }}
cache: 'npm'
- name: Use Python ${{ matrix.python }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Cache CPP Client
id: cache-dependencies
uses: actions/cache@v3
with:
path: pkg/windows/
key: ${{ runner.os }}-${{ matrix.arch }}-${{ hashFiles('pulsar-client-cpp.txt') }}
- name: Add env vars
shell: bash
run: |
if [ "${{ matrix.arch }}" = "x86" ]; then
echo "TARGET=ia32" >> $GITHUB_ENV
else
echo "TARGET=${{ matrix.arch }}" >> $GITHUB_ENV
fi
- name: Download CPP Client
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: |
pkg/windows/download-cpp-client.bat ${{ matrix.arch }}
- name: Build Node binaries lib
run: |
npm install --ignore-scripts
npx node-pre-gyp configure --target_arch=${{ env.TARGET }}
npx node-pre-gyp build --target_arch=${{ env.TARGET }}
- name: Test loading Node binaries lib
run: |
node pkg/load_test.js
- name: Package Node binaries lib
run: |
npx node-pre-gyp package --target_arch=${{ env.TARGET }}
macos-napi-homebrew:
name: Build NAPI macos with CPP lib installed by Homebrew
runs-on: macos-latest
timeout-minutes: 3000
strategy:
fail-fast: false
matrix:
python:
- "3.10"
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Use Python ${{ matrix.python }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install CPP lib
run: |
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=true
brew update
brew install libpulsar
- name: Build Node binaries lib
run: |
npm install --ignore-scripts
npx node-pre-gyp configure
npx node-pre-gyp build
- name: Test loading Node binaries lib
run: |
node pkg/load_test.js
- name: Package Node binaries lib
run: |
npx node-pre-gyp package
linux-napi-apt:
name: Build NAPI linux with CPP lib installed by APT
runs-on: ubuntu-22.04
timeout-minutes: 3000
strategy:
fail-fast: false
matrix:
python:
- "3.10"
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Use Python ${{ matrix.python }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install CPP lib
run: |
source pulsar-client-cpp.txt
UNAME_ARCH=$(uname -m)
if [ $UNAME_ARCH == 'aarch64' ]; then
PLATFORM='arm64'
else
PLATFORM='x86_64'
fi
curl -s -L -O ${CPP_CLIENT_BASE_URL}/deb-${PLATFORM}/apache-pulsar-client.deb
curl -s -L -O ${CPP_CLIENT_BASE_URL}/deb-${PLATFORM}/apache-pulsar-client-dev.deb
sudo -E apt -y install ./apache-pulsar-client.deb ./apache-pulsar-client-dev.deb
- name: Build Node binaries lib
run: |
npm install --ignore-scripts
npx node-pre-gyp configure
npx node-pre-gyp build
- name: Test loading Node binaries lib
run: |
node pkg/load_test.js
- name: Package Node binaries lib
run: |
npx node-pre-gyp package