Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sunli829 committed Sep 23, 2024
1 parent 4e39be9 commit 9e02ebb
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,15 @@ jobs:
options: "--user 0:0 -v ${{ github.workspace }}:/build -w /build/nodejs"
run: ${{ matrix.settings.build }}

- name: Move artifacts
run: napi artifacts
working-directory: ./nodejs

- name: List packages
run: ls -R ./npm
shell: bash
working-directory: ./nodejs

check-java-sdk:
needs:
- check-format
Expand Down
3 changes: 3 additions & 0 deletions nodejs/npm/linux-arm64-gnu/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `longport-linux-arm64-gnu`

This is the **aarch64-unknown-linux-gnu** binary for `longport`
21 changes: 21 additions & 0 deletions nodejs/npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "longport-linux-arm64-gnu",
"version": "0.0.0",
"os": [
"linux"
],
"cpu": [
"arm64"
],
"main": "longport.linux-arm64-gnu.node",
"files": [
"longport.linux-arm64-gnu.node"
],
"license": "MIT",
"engines": {
"node": ">= 10"
},
"libc": [
"glibc"
]
}
3 changes: 3 additions & 0 deletions nodejs/npm/linux-x64-musl/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `longport-linux-x64-musl`

This is the **x86_64-unknown-linux-musl** binary for `longport`
21 changes: 21 additions & 0 deletions nodejs/npm/linux-x64-musl/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "longport-linux-x64-musl",
"version": "0.0.0",
"os": [
"linux"
],
"cpu": [
"x64"
],
"main": "longport.linux-x64-musl.node",
"files": [
"longport.linux-x64-musl.node"
],
"license": "MIT",
"engines": {
"node": ">= 10"
},
"libc": [
"glibc"
]
}

0 comments on commit 9e02ebb

Please sign in to comment.