-
-
Notifications
You must be signed in to change notification settings - Fork 571
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci): fix musl build failed in ci
- Loading branch information
Showing
3 changed files
with
327 additions
and
274 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,7 +84,8 @@ | |
"packageManager": "[email protected]", | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"[email protected]": "patches/[email protected]" | ||
"[email protected]": "patches/[email protected]", | ||
"@napi-rs/[email protected]": "patches/@[email protected]" | ||
} | ||
}, | ||
"lint-staged": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/dist/api/build.js b/dist/api/build.js | ||
index a9c86f2fa91ec42ff6869651eb39ec7da8a155ac..02a901e18e527f2836b26d51ca32eaceab017a51 100644 | ||
--- a/dist/api/build.js | ||
+++ b/dist/api/build.js | ||
@@ -306,7 +306,7 @@ class Builder { | ||
rustflags += ' -C link-arg=-s'; | ||
} | ||
if (rustflags.length) { | ||
- this.envs.RUSTFLAGS = rustflags; | ||
+ // this.envs.RUSTFLAGS = rustflags; | ||
} | ||
// END RUSTFLAGS | ||
// LINKER |
Oops, something went wrong.