-
Notifications
You must be signed in to change notification settings - Fork 124
456 lines (381 loc) Β· 13.8 KB
/
Copy pathtest-javascript.yml
File metadata and controls
456 lines (381 loc) Β· 13.8 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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
name: Test JavaScript
on:
pull_request:
branches: ["main", "main-*"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test_nodejs:
name: Test Node.js
runs-on: ubuntu-24.04
env:
CC: gcc-14
CXX: g++-14
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Print Machine Specs
shell: bash
run: |
echo "::group::Machine Information"
uname -a || true
cat /proc/cpuinfo 2>/dev/null | head -30 || sysctl -a machdep.cpu 2>/dev/null | head -30 || wmic cpu get Name,NumberOfCores,MaxClockSpeed 2>/dev/null || true
free -h 2>/dev/null || vm_stat 2>/dev/null || systeminfo 2>/dev/null | head -20 || true
echo "::endgroup::"
- name: Update Compilers
uses: nick-fields/retry@v4
with:
max_attempts: 3
retry_wait_seconds: 10
timeout_minutes: 180
command: |
sudo apt update
sudo apt install -y cmake build-essential libjemalloc-dev libomp-dev
- name: Set Up Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Build and Test
run: |
npm install --ignore-scripts
node probes/probe.js
npx node-gyp rebuild
npm run build-js
npm test
test_wasm_emscripten:
name: Test WASM via Emscripten
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Print Machine Specs
shell: bash
run: |
echo "::group::Machine Information"
uname -a || true
cat /proc/cpuinfo 2>/dev/null | head -30 || sysctl -a machdep.cpu 2>/dev/null | head -30 || wmic cpu get Name,NumberOfCores,MaxClockSpeed 2>/dev/null || true
free -h 2>/dev/null || vm_stat 2>/dev/null || systeminfo 2>/dev/null | head -20 || true
echo "::endgroup::"
- name: Install Emscripten
uses: nick-fields/retry@v4
with:
max_attempts: 3
retry_wait_seconds: 15
timeout_minutes: 180
command: |
rm -rf ~/emsdk
git clone --depth 1 https://github.com/emscripten-core/emsdk.git ~/emsdk
(cd ~/emsdk && ./emsdk install latest && ./emsdk activate latest)
- name: Build WASM
run: |
source ~/emsdk/emsdk_env.sh
cmake -B build-wasm -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-wasm.cmake -DNK_BUILD_SHARED=ON
cmake --build build-wasm
- name: Set Up Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Build JavaScript Bindings
run: |
npm install --ignore-scripts
npm run build-js
- name: Test Emscripten Runtime
run: NK_RUNTIME=emscripten node --test test/test-wasm.mjs
test_wasm_emscripten64:
name: Test WASM64 via Emscripten (memory64)
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Print Machine Specs
shell: bash
run: |
echo "::group::Machine Information"
uname -a || true
cat /proc/cpuinfo 2>/dev/null | head -30 || sysctl -a machdep.cpu 2>/dev/null | head -30 || wmic cpu get Name,NumberOfCores,MaxClockSpeed 2>/dev/null || true
free -h 2>/dev/null || vm_stat 2>/dev/null || systeminfo 2>/dev/null | head -20 || true
echo "::endgroup::"
- name: Install Emscripten
uses: nick-fields/retry@v4
with:
max_attempts: 3
retry_wait_seconds: 15
timeout_minutes: 180
command: |
rm -rf ~/emsdk
git clone --depth 1 https://github.com/emscripten-core/emsdk.git ~/emsdk
(cd ~/emsdk && ./emsdk install latest && ./emsdk activate latest)
- name: Build WASM64
run: |
source ~/emsdk/emsdk_env.sh
cmake -B build-wasm64 -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-wasm64.cmake -DNK_BUILD_SHARED=ON
cmake --build build-wasm64
- name: Set Up Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Build JavaScript Bindings
run: |
npm install --ignore-scripts
npm run build-js
- name: Test Emscripten64 Runtime
run: NK_RUNTIME=emscripten64 node --test test/test-wasm.mjs
test_wasm_wasi:
name: Test WASM via WASI Node.js
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Print Machine Specs
shell: bash
run: |
echo "::group::Machine Information"
uname -a || true
cat /proc/cpuinfo 2>/dev/null | head -30 || sysctl -a machdep.cpu 2>/dev/null | head -30 || wmic cpu get Name,NumberOfCores,MaxClockSpeed 2>/dev/null || true
free -h 2>/dev/null || vm_stat 2>/dev/null || systeminfo 2>/dev/null | head -20 || true
echo "::endgroup::"
- name: Install WASI-SDK
uses: nick-fields/retry@v4
with:
max_attempts: 3
retry_wait_seconds: 15
timeout_minutes: 180
command: |
wget -q https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-24/wasi-sdk-24.0-x86_64-linux.tar.gz
tar xzf wasi-sdk-24.0-x86_64-linux.tar.gz -C ~
mv ~/wasi-sdk-* ~/wasi-sdk
- name: Build WASI
run: |
export WASI_SDK_PATH=~/wasi-sdk
cmake -B build-wasi -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-wasi.cmake -DNK_BUILD_TEST=ON -DNK_WASI_HOSTED=ON
cmake --build build-wasi
- name: Set Up Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Test WASI Runtime
run: NK_RUNTIME=wasi-node node --test test/test-wasm.mjs
test_wasm_browser:
name: Test WASM via Browser
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Print Machine Specs
shell: bash
run: |
echo "::group::Machine Information"
uname -a || true
cat /proc/cpuinfo 2>/dev/null | head -30 || sysctl -a machdep.cpu 2>/dev/null | head -30 || wmic cpu get Name,NumberOfCores,MaxClockSpeed 2>/dev/null || true
free -h 2>/dev/null || vm_stat 2>/dev/null || systeminfo 2>/dev/null | head -20 || true
echo "::endgroup::"
- name: Install Emscripten
uses: nick-fields/retry@v4
with:
max_attempts: 3
retry_wait_seconds: 15
timeout_minutes: 180
command: |
rm -rf ~/emsdk
git clone --depth 1 https://github.com/emscripten-core/emsdk.git ~/emsdk
(cd ~/emsdk && ./emsdk install latest && ./emsdk activate latest)
- name: Build WASM
run: |
source ~/emsdk/emsdk_env.sh
cmake -B build-wasm -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-wasm.cmake -DNK_BUILD_SHARED=ON
cmake --build build-wasm
- name: Set Up Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Build JavaScript Bindings
run: |
npm install --ignore-scripts
npm run build-js
- name: Build Browser Bundle
run: |
cp build-wasm/numkong.js build-wasm/numkong-emscripten.js
npx esbuild javascript/dist/esm/numkong-browser.js \
--bundle --format=esm --platform=browser --target=es2022 \
--outfile=build-wasm/numkong-bundle.js
- name: Install Playwright
uses: nick-fields/retry@v4
with:
max_attempts: 3
retry_wait_seconds: 15
timeout_minutes: 180
command: npx playwright install --with-deps chromium
- name: Test Browser runtime
run: npx playwright test --config test/playwright.config.ts
- name: Upload Test Report
if: always()
uses: actions/upload-artifact@v7
with:
name: playwright-report
path: playwright-report/
retention-days: 7
test_wasm_wasmer:
name: Test WASM via Wasmer
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Print Machine Specs
shell: bash
run: |
echo "::group::Machine Information"
uname -a || true
cat /proc/cpuinfo 2>/dev/null | head -30 || sysctl -a machdep.cpu 2>/dev/null | head -30 || wmic cpu get Name,NumberOfCores,MaxClockSpeed 2>/dev/null || true
free -h 2>/dev/null || vm_stat 2>/dev/null || systeminfo 2>/dev/null | head -20 || true
echo "::endgroup::"
- name: Install Rust Toolchain
uses: moonrepo/setup-rust@v1
- name: Install WASI-SDK
uses: nick-fields/retry@v4
with:
max_attempts: 3
retry_wait_seconds: 15
timeout_minutes: 180
command: |
wget -q https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-24/wasi-sdk-24.0-x86_64-linux.tar.gz
tar xzf wasi-sdk-24.0-x86_64-linux.tar.gz -C ~
mv ~/wasi-sdk-* ~/wasi-sdk
- name: Build WASI
run: |
export WASI_SDK_PATH=~/wasi-sdk
cmake -B build-wasi -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-wasi.cmake -DNK_BUILD_TEST=ON
cmake --build build-wasi
- name: Install Wasmer (HEAD for relaxed-SIMD support, not yet in stable)
uses: nick-fields/retry@v4
with:
max_attempts: 2
retry_wait_seconds: 30
timeout_minutes: 180
command: cargo install wasmer-cli --git https://github.com/wasmerio/wasmer.git --branch main --features cranelift
- name: Test Wasmer runtime
run: wasmer run --enable-simd --enable-relaxed-simd --forward-host-env ./build-wasi/nk_test.wasm
env:
NK_BUDGET_SECS: 0.1
test_wasm_wasmtime:
name: Test WASM via Wasmtime
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Print Machine Specs
shell: bash
run: |
echo "::group::Machine Information"
uname -a || true
cat /proc/cpuinfo 2>/dev/null | head -30 || sysctl -a machdep.cpu 2>/dev/null | head -30 || wmic cpu get Name,NumberOfCores,MaxClockSpeed 2>/dev/null || true
free -h 2>/dev/null || vm_stat 2>/dev/null || systeminfo 2>/dev/null | head -20 || true
echo "::endgroup::"
- name: Install Rust Toolchain
uses: moonrepo/setup-rust@v1
- name: Install WASI-SDK
uses: nick-fields/retry@v4
with:
max_attempts: 3
retry_wait_seconds: 15
timeout_minutes: 180
command: |
wget -q https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-24/wasi-sdk-24.0-x86_64-linux.tar.gz
tar xzf wasi-sdk-24.0-x86_64-linux.tar.gz -C ~
mv ~/wasi-sdk-* ~/wasi-sdk
- name: Build WASI
run: |
export WASI_SDK_PATH=~/wasi-sdk
cmake -B build-wasi -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-wasi.cmake -DNK_BUILD_TEST=ON
cmake --build build-wasi
- name: Test Wasmtime Runtime
run: cargo test --features wasm-runtime -- wasm_runtime
env:
NK_BUDGET_SECS: 0.1
test_deno:
name: Test Deno
runs-on: ubuntu-24.04
env:
CC: gcc-14
CXX: g++-14
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Print Machine Specs
shell: bash
run: |
echo "::group::Machine Information"
uname -a || true
cat /proc/cpuinfo 2>/dev/null | head -30 || sysctl -a machdep.cpu 2>/dev/null | head -30 || wmic cpu get Name,NumberOfCores,MaxClockSpeed 2>/dev/null || true
free -h 2>/dev/null || vm_stat 2>/dev/null || systeminfo 2>/dev/null | head -20 || true
echo "::endgroup::"
- name: Update Compilers
uses: nick-fields/retry@v4
with:
max_attempts: 3
retry_wait_seconds: 10
timeout_minutes: 180
command: |
sudo apt update
sudo apt install -y cmake build-essential libjemalloc-dev libomp-dev
- name: Set Up Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Build and Test with Node
run: |
npm install --ignore-scripts
node probes/probe.js
npx node-gyp rebuild
npm run build-js
npm test
- name: Set Up Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Test with Deno
run: deno test -A --no-check
test_bun:
name: Test Bun
runs-on: ubuntu-24.04
env:
CC: gcc-14
CXX: g++-14
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Print Machine Specs
shell: bash
run: |
echo "::group::Machine Information"
uname -a || true
cat /proc/cpuinfo 2>/dev/null | head -30 || true
free -h 2>/dev/null || true
echo "::endgroup::"
- name: Update Compilers
uses: nick-fields/retry@v4
with:
max_attempts: 3
retry_wait_seconds: 10
timeout_minutes: 180
command: |
sudo apt update
sudo apt install -y cmake build-essential libjemalloc-dev libomp-dev
- name: Set Up Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Build Prebuilds and JS
run: |
npm install --ignore-scripts
node probes/probe.js
npx node-gyp rebuild
npm run build-js
- name: Test with Node
run: npm test
- name: Set Up Bun
uses: oven-sh/setup-bun@v2
- name: Test with Bun
run: bun test ./test/test.mjs