Skip to content

Commit

Permalink
More
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHougaard committed Jan 23, 2024
1 parent 9c0e19c commit ec19135
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 48 deletions.
15 changes: 2 additions & 13 deletions .github/workflows/build-napi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,23 +63,12 @@ jobs:
set -e &&
npm run build
- host: ubuntu-latest
target: aarch64-unknown-linux-gnu
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:stable-2023-09-17-aarch64
target: aarch64-linux-gnu
build: |
sudo apt-get update &&
sudo apt-get install -y binutils &&
rustup target add aarch64-unknown-linux-gnu &&
set -e &&
npm run build --target aarch64-unknown-linux-gnu
- host: ubuntu-latest
name: "armv7 Test"
target: armv7-unknown-linux-gnueabihf
setup: |
sudo apt-get update
sudo apt-get install gcc-arm-linux-gnueabihf -y
build: |
npm run build -x --target armv7-unknown-linux-gnueabihf
npm run build
steps:
- name: Checkout repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand Down
30 changes: 30 additions & 0 deletions languages/node/npm/gnu-arm64/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "@infisical/sdk-linux-arm64-gnu",
"version": "0.0.0",
"homepage": "https://github.com/infisical/sdk",
"bugs": {
"url": "https://github.com/infisical/sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infisical/sdk.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": "Infisical Inc. <[email protected]> (https://infisical.com)",
"main": "infisical.aarch64-unknown-linux-gnu.node",
"files": [
"infisical.aarch64-unknown-linux-gnu.node"
],
"engines": {
"node": ">= 10"
},
"os": [
"linux"
],
"cpu": [
"arm64"
],
"libc": [
"glibc"
]
}
35 changes: 0 additions & 35 deletions languages/node/npm/linux-arm64-gnu/package.json

This file was deleted.

2 changes: 2 additions & 0 deletions languages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-linux-gnu",
"i686-pc-windows-msvc"
]
}
Expand Down Expand Up @@ -62,6 +63,7 @@
"@infisical/sdk-darwin-x64": "0.0.0",
"@infisical/sdk-linux-x64-gnu": "0.0.0",
"@infisical/sdk-darwin-arm64": "0.0.0",
"@infisical/sdk-gnu-arm64": "0.0.0",
"@infisical/sdk-win32-ia32-msvc": "0.0.0"
}
}

0 comments on commit ec19135

Please sign in to comment.