We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4560eab commit 0891212Copy full SHA for 0891212
.github/workflows/CI.yml
@@ -34,7 +34,10 @@ jobs:
34
- host: ubuntu-latest
35
target: x86_64-unknown-linux-gnu
36
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
37
- build: yarn build --target x86_64-unknown-linux-gnu
+ build: |-
38
+ apt-get update -yq &&
39
+ apt-get install -yq lld &&
40
+ CC=x86_64-linux-gnu-gcc CXX=x86_64-linux-gnu-g++ yarn build --target x86_64-unknown-linux-gnu
41
42
target: x86_64-unknown-linux-musl
43
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
0 commit comments