-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: build more target for different platform (#41)
* fix: build more target * chore: test * fix: add target * fix: test ci * fix: test case * fix: ci * fix: add npm target * fix: ci * fix: test simple ci * fix: test ci * fix: test ci
- Loading branch information
Showing
8 changed files
with
128 additions
and
15 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
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,3 @@ | ||
# `@ice/pack-binding-linux-arm64-gnu` | ||
|
||
This is the **aarch64-unknown-linux-gnu** binary for `@ice/pack-binding` |
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,24 @@ | ||
{ | ||
"name": "@ice/pack-binding-linux-arm64-gnu", | ||
"version": "0.0.1", | ||
"os": [ | ||
"linux" | ||
], | ||
"cpu": [ | ||
"arm64" | ||
], | ||
"main": "pack-binding.linux-arm64-gnu.node", | ||
"files": [ | ||
"pack-binding.linux-arm64-gnu.node" | ||
], | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">= 10" | ||
}, | ||
"libc": [ | ||
"glibc" | ||
], | ||
"repository": { | ||
"url": "https://github.com/ice-lab/icepack" | ||
} | ||
} |
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,3 @@ | ||
# `@ice/pack-binding-linux-arm64-musl` | ||
|
||
This is the **arm64-unknown-linux-musl** binary for `@ice/pack-binding` |
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,24 @@ | ||
{ | ||
"name": "@ice/pack-binding-linux-arm64-musl", | ||
"version": "0.0.1", | ||
"os": [ | ||
"linux" | ||
], | ||
"cpu": [ | ||
"arm64" | ||
], | ||
"main": "pack-binding.linux-arm64-musl.node", | ||
"files": [ | ||
"pack-binding.linux-arm64-musl.node" | ||
], | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">= 10" | ||
}, | ||
"libc": [ | ||
"musl" | ||
], | ||
"repository": { | ||
"url": "https://github.com/ice-lab/icepack" | ||
} | ||
} |
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,3 @@ | ||
# `@ice/pack-binding-win32-ia32-msvc` | ||
|
||
This is the **i686-pc-windows-msvc** binary for `@ice/pack-binding` |
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,21 @@ | ||
{ | ||
"name": "@ice/pack-binding-win32-ia32-msvc", | ||
"version": "0.0.1", | ||
"os": [ | ||
"win32" | ||
], | ||
"cpu": [ | ||
"i686" | ||
], | ||
"main": "pack-binding.win32-ia32-msvc.node", | ||
"files": [ | ||
"pack-binding.win32-ia32-msvc.node" | ||
], | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">= 10" | ||
}, | ||
"repository": { | ||
"url": "https://github.com/ice-lab/icepack" | ||
} | ||
} |
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