-
-
Notifications
You must be signed in to change notification settings - Fork 29
632 lines (523 loc) · 19.3 KB
/
build.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
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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
name: ci
on:
pull_request: {}
push:
branches:
- master
schedule: [cron: "40 1 * * *"]
jobs:
commitsar:
name: Verify commit messages
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: aevea/[email protected]
pre-commit:
name: Generic pre-commit checks
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-python@v5
with:
python-version: 3.11
- run: pip install pre-commit
- run: SKIP=fmt,cargo-check,clippy pre-commit run --all-files
eslint:
name: ESLint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Cache NPM dependencies
uses: actions/cache@v4
with:
path: node_modules
key: npm-cache-lint-node@16-${{ hashFiles('yarn.lock') }}
- name: "Install dependencies"
run: yarn install --immutable --registry https://registry.npmjs.org --network-timeout 300000
working-directory: ./bindings/javascript
- name: ESLint
run: yarn lint
working-directory: ./bindings/javascript
test-stable:
name: Test (stable)
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
cache: "pip"
cache-dependency-path: "**/requirements-*.txt"
- name: Start background server
run: |
python -m pip install -r ./css-inline/tests/requirements-test.txt
# Starts the server in background
python ./css-inline/tests/server.py &
shell: bash
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: css-inline
- run: cargo test --no-fail-fast
working-directory: ./css-inline
fmt:
name: Rustfmt
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- run: cargo fmt --all -- --check
working-directory: ./css-inline
- run: cargo fmt --all -- --check
working-directory: ./profiler
- run: cargo fmt --all -- --check
working-directory: ./bindings/c
- run: cargo fmt --all -- --check
working-directory: ./bindings/javascript
- run: cargo fmt --all -- --check
working-directory: ./bindings/python
- run: cargo fmt --all -- --check
working-directory: ./bindings/ruby
clippy:
name: Clippy
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
with:
workspaces: |
css-inline
bindings/javascript
bindings/python
bindings/ruby
bindings/c
bindings/profiler
- name: Rust
run: cargo clippy -- -D warnings
working-directory: ./css-inline
- name: Profiler
run: cargo clippy -- -D warnings
working-directory: ./profiler
- name: Python
run: cargo clippy -- -D warnings
working-directory: ./bindings/python
- name: JavaScript
run: cargo clippy -- -D warnings
working-directory: ./bindings/javascript
- name: Ruby
run: cargo clippy -- -D warnings
working-directory: ./bindings/ruby
- name: C
run: cargo clippy -- -D warnings
working-directory: ./bindings/c
msrv:
name: MSRV
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.70"
- uses: Swatinem/rust-cache@v2
with:
workspaces: css-inline
- run: cargo build
working-directory: ./css-inline
test-javascript:
strategy:
fail-fast: false
matrix:
settings:
- host: macos-12
target: x86_64-apple-darwin
build: |
yarn build
strip -x *.node
- host: macos-12
target: aarch64-apple-darwin
build: |
sudo rm -Rf /Library/Developer/CommandLineTools/SDKs/*;
export CC=$(xcrun -f clang);
export CXX=$(xcrun -f clang++);
SYSROOT=$(xcrun --sdk macosx --show-sdk-path);
export CFLAGS="-isysroot $SYSROOT -isystem $SYSROOT";
yarn build --target aarch64-apple-darwin
strip -x *.node
- host: windows-2022
build: yarn build
target: x86_64-pc-windows-msvc
- host: windows-2022
build: yarn build --target aarch64-pc-windows-msvc
target: aarch64-pc-windows-msvc
- host: ubuntu-22.04
target: x86_64-unknown-linux-gnu
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
build: |-
set -e &&
yarn build --target x86_64-unknown-linux-gnu &&
strip *.node
- host: ubuntu-22.04
target: x86_64-unknown-linux-musl
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
build: set -e && yarn build && strip *.node
- host: ubuntu-22.04
target: aarch64-unknown-linux-gnu
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
build: |-
set -e &&
yarn build --target aarch64-unknown-linux-gnu &&
aarch64-unknown-linux-gnu-strip *.node
- host: ubuntu-22.04
target: armv7-unknown-linux-gnueabihf
setup: |
sudo apt-get update
sudo apt-get install gcc-arm-linux-gnueabihf -y
build: |
yarn build --target armv7-unknown-linux-gnueabihf
arm-linux-gnueabihf-strip *.node
- host: ubuntu-22.04
target: aarch64-unknown-linux-musl
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
build: |-
set -e &&
rustup target add aarch64-unknown-linux-musl &&
yarn build --target aarch64-unknown-linux-musl &&
/aarch64-linux-musl-cross/bin/aarch64-linux-musl-strip *.node
- host: ubuntu-22.04
target: aarch64-linux-android
build: |
yarn build --target aarch64-linux-android
${ANDROID_NDK_LATEST_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip *.node
- host: ubuntu-22.04
target: armv7-linux-androideabi
build: |
yarn build --target armv7-linux-androideabi
${ANDROID_NDK_LATEST_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip *.node
node:
- "18"
- "20"
name: NodeJS ${{ matrix.node }} on ${{ matrix.settings.target }}
runs-on: ${{ matrix.settings.host }}
env:
DEBUG: napi:*
APP_NAME: css-inline
MACOSX_DEPLOYMENT_TARGET: "10.13"
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
if: ${{ !matrix.settings.docker }}
with:
node-version: ${{ matrix.node }}
cache: yarn
cache-dependency-path: bindings/javascript/yarn.lock
- uses: actions/setup-python@v5
with:
python-version: 3.11
cache: "pip"
cache-dependency-path: "**/requirements-*.txt"
- name: Start background server
run: |
python -m pip install -r ./css-inline/tests/requirements-test.txt
# Starts the server in background
python ./css-inline/tests/server.py &
shell: bash
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
if: ${{ !matrix.settings.docker }}
with:
toolchain: stable
targets: ${{ matrix.settings.target }}
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
.cargo-cache
target/
key: ${{ matrix.settings.target }}-cargo-${{ matrix.settings.host }}
- uses: goto-bus-stop/setup-zig@v2
if: ${{ matrix.settings.target == 'armv7-unknown-linux-gnueabihf' }}
with:
version: 0.11.0
- name: Setup toolchain
run: ${{ matrix.settings.setup }}
if: ${{ matrix.settings.setup }}
shell: bash
- name: Config yarn (x86_64-unknown-linux-musl)
if: matrix.settings.target == 'x86_64-unknown-linux-musl'
run: yarn config set supportedArchitectures.libc "musl"
working-directory: bindings/javascript
- name: Config yarn (aarch64-unknown-linux-gnu)
if: matrix.settings.target == 'aarch64-unknown-linux-gnu'
run: |
yarn config set supportedArchitectures.cpu "arm64"
yarn config set supportedArchitectures.libc "glibc"
working-directory: bindings/javascript
- name: Config yarn (aarch64-unknown-linux-musl)
if: matrix.settings.target == 'aarch64-unknown-linux-musl'
run: |
yarn config set supportedArchitectures.cpu "arm64"
yarn config set supportedArchitectures.libc "musl"
working-directory: bindings/javascript
- name: Config yarn (armv7-unknown-linux-gnueabihf)
if: matrix.settings.target == 'armv7-unknown-linux-gnueabihf'
run: yarn config set supportedArchitectures.cpu "arm"
working-directory: bindings/javascript
- name: Config yarn (aarch64-linux-android)
if: matrix.settings.target == 'aarch64-linux-android'
run: yarn config set supportedArchitectures.cpu "arm64"
working-directory: bindings/javascript
- name: Config yarn (aarch64-pc-windows-msvc)
if: matrix.settings.target == 'aarch64-pc-windows-msvc'
run: yarn config set supportedArchitectures.cpu "arm64"
working-directory: bindings/javascript
- name: Config yarn (armv7-linux-androideabi)
if: matrix.settings.target == 'armv7-linux-androideabi'
run: yarn config set supportedArchitectures.cpu "arm"
working-directory: bindings/javascript
- name: Install dependencies
run: yarn install
working-directory: bindings/javascript
- name: Build in docker
uses: addnab/docker-run-action@v3
if: ${{ matrix.settings.docker }}
with:
image: ${{ matrix.settings.docker }}
options: "--user 0:0 -v ${{ github.workspace }}/.cargo-cache/git/db:/usr/local/cargo/git/db -v ${{ github.workspace }}/.cargo/registry/cache:/usr/local/cargo/registry/cache -v ${{ github.workspace }}/.cargo/registry/index:/usr/local/cargo/registry/index -v ${{ github.workspace }}:/build -w /build/bindings/javascript"
run: ${{ matrix.settings.build }}
- name: Build
run: ${{ matrix.settings.build }}
if: ${{ !matrix.settings.docker }}
shell: bash
working-directory: bindings/javascript
- name: Set up QEMU (aarch64)
uses: docker/setup-qemu-action@v3
if: ${{ contains(fromJson('["aarch64-unknown-linux-gnu", "aarch64-unknown-linux-musl"]'), matrix.settings.target) }}
with:
platforms: arm64
- name: Set up QEMU (armv7-unknown-linux-gnueabihf)
uses: docker/setup-qemu-action@v3
if: matrix.settings.target == 'armv7-unknown-linux-gnueabihf'
with:
platforms: arm
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
if: ${{ contains(fromJson('["aarch64-unknown-linux-gnu", "aarch64-unknown-linux-musl", "armv7-unknown-linux-gnueabihf"]'), matrix.settings.target) }}
- name: Test (x86_64-apple-darwin & x86_64-pc-windows-msvc)
if: ${{ contains(fromJson('["x86_64-apple-darwin", "x86_64-pc-windows-msvc"]'), matrix.settings.target) }}
run: yarn test
working-directory: bindings/javascript
- name: Test (x86_64-unknown-linux-gnu)
if: matrix.settings.target == 'x86_64-unknown-linux-gnu'
run: docker run --rm --network host -v $(pwd):/build -w /build/bindings/javascript node:${{ matrix.node }}-slim yarn test
- name: Test (x86_64-unknown-linux-musl)
if: matrix.settings.target == 'x86_64-unknown-linux-musl'
run: docker run --rm --network host -v $(pwd):/build -w /build/bindings/javascript node:${{ matrix.node }}-alpine yarn test
- name: Test (aarch64-unknown-linux-gnu)
if: matrix.settings.target == 'aarch64-unknown-linux-gnu'
uses: addnab/docker-run-action@v3
with:
image: node:${{ matrix.node }}-slim
options: "--platform linux/arm64 --network host -v ${{ github.workspace }}:/build -w /build/bindings/javascript"
run: |
set -e
yarn test
- name: Test in docker (aarch64-unknown-linux-musl)
if: matrix.settings.target == 'aarch64-unknown-linux-musl'
uses: addnab/docker-run-action@v3
with:
image: node:${{ matrix.node }}-alpine
options: "--platform linux/arm64 --network host -v ${{ github.workspace }}:/build -w /build/bindings/javascript"
run: |
set -e
yarn test
- name: Test in docker (armv7-unknown-linux-gnueabihf)
if: matrix.settings.target == 'armv7-unknown-linux-gnueabihf'
uses: addnab/docker-run-action@v3
with:
image: node:${{ matrix.node }}-bullseye-slim
options: "--platform linux/arm/v7 --network host -v ${{ github.workspace }}:/build -w /build/bindings/javascript"
run: |
set -e
yarn test
test-python:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-12, windows-2022]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
cache: "pip"
cache-dependency-path: "**/requirements-*.txt"
- name: Start background server
run: |
python -m pip install -r ./css-inline/tests/requirements-test.txt
# Starts the server in background
python ./css-inline/tests/server.py &
shell: bash
- run: python -m pip install -r requirements/dev.txt
working-directory: ./bindings/python
- name: Run ${{ matrix.python }} tox job
run: tox -e py
working-directory: ./bindings/python
test-ruby:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-12, windows-2022]
ruby-version: ["2.7", "3.2", "3.3"]
name: Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby & Rust
uses: oxidize-rb/actions/setup-ruby-and-rust@main
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
cargo-cache: true
cache-version: v1
working-directory: ./bindings/ruby
- uses: actions/setup-python@v5
with:
python-version: 3.11
cache: "pip"
cache-dependency-path: "**/requirements-*.txt"
- name: Start background server
run: |
python -m pip install -r ./css-inline/tests/requirements-test.txt
# Starts the server in background
python ./css-inline/tests/server.py &
shell: bash
- run: bundle exec rake test
working-directory: ./bindings/ruby
test-wasm:
name: WASM module tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: yarn
cache-dependency-path: bindings/javascript/yarn.lock
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: bindings/javascript
cache-all-crates: "true"
- name: Install wasm-pack
run: cargo install wasm-pack
- name: Install dependencies
run: yarn install
working-directory: ./bindings/javascript
- name: Build Wasm
run: yarn build:wasm
working-directory: ./bindings/javascript
- name: Test Wasm
run: yarn test:wasm
working-directory: ./bindings/javascript
test-c:
name: C bindings tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build
working-directory: ./bindings/c
- name: Run tests
run: |
gcc -c -I. tests/main.c
gcc main.o target/debug/libcss_inline.so -o out
./out
working-directory: ./bindings/c
env:
LD_LIBRARY_PATH: target/debug
features:
name: Check features
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: css-inline
cache-all-crates: "true"
- uses: taiki-e/install-action@cargo-hack
- run: cargo hack check --feature-powerset --lib
working-directory: ./css-inline
coverage:
name: Code coverage
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: css-inline
cache-all-crates: "true"
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- uses: taiki-e/install-action@cargo-hack
- uses: actions/setup-python@v5
with:
python-version: 3.11
cache: "pip"
cache-dependency-path: "**/requirements-*.txt"
- name: Start background server
run: |
python -m pip install -r ./css-inline/tests/requirements-test.txt
# Starts the server in background
python ./css-inline/tests/server.py &
shell: bash
- name: Run tests
run: cargo hack llvm-cov --no-report --feature-powerset
working-directory: ./css-inline
- name: Generate coverage reports
run: cargo llvm-cov report --lcov --output-path lcov.info
working-directory: ./css-inline
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
name: coverage
files: lcov.info
fail_ci_if_error: true
fuzz:
name: Fuzz
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
with:
workspaces: css-inline
cache-all-crates: "true"
- run: cargo install cargo-fuzz
- run: cargo fuzz run inline -- -max_total_time=60
working-directory: ./css-inline