Skip to content

Commit fa0b9a3

Browse files
authored
feat(aarch64): provide pre-compiled arm64 binaries (#27)
1 parent ffe7da8 commit fa0b9a3

12 files changed

+343
-97
lines changed

.github/workflows/publish.yml

+11
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
- os: ubuntu-latest
1212
target: x86_64-unknown-linux-gnu
1313
package: linux-x64-gnu
14+
- os: ubuntu-20.04
15+
target: aarch64-unknown-linux-gnu
16+
package: linux-arm64-gnu
1417
- os: windows-latest
1518
target: x86_64-pc-windows-msvc
1619
package: win32-x64-msvc
@@ -40,6 +43,14 @@ jobs:
4043
java-version: '17'
4144
- name: Add rust target
4245
run: rustup target add ${{ matrix.target }}
46+
- name: Setup cross-compilation
47+
if: ${{ matrix.target == 'aarch64-unknown-linux-gnu' }}
48+
run: |
49+
sudo apt-get update
50+
sudo apt-get install gcc-multilib -y
51+
sudo apt-get install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu -y
52+
mkdir .cargo
53+
printf '[target.aarch64-unknown-linux-gnu]\nlinker = "aarch64-linux-gnu-gcc"\n' >> .cargo/config
4354
- name: Install Dependencies
4455
run: npm ci
4556
- name: Build

.github/workflows/system_test.yml

+22
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,25 @@ jobs:
3131
working-directory: ${{github.workspace}}/test/system_test
3232
run: npm run test
3333
timeout-minutes: 2
34+
35+
test-arm64:
36+
strategy:
37+
matrix:
38+
node-version: [16, 18]
39+
java-version: [8, 11, 17, 18]
40+
runs-on: ubuntu-20.04
41+
steps:
42+
- uses: actions/checkout@v3
43+
- name: Run tests
44+
uses: addnab/docker-run-action@v3
45+
timeout-minutes: 30
46+
with:
47+
image: arm64v8/node:${{matrix.node-version}}-bullseye
48+
options: -v ${{github.workspace}}/test/system_test:/github/workspace -w /github/workspace
49+
run: |
50+
apt-get update
51+
apt-get install openjdk-${{matrix.java-version}}-jre-headless -y
52+
npm config set cache /tmp --global
53+
export CI=true
54+
npm install
55+
npm run test

.github/workflows/test.yml

+85-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333
uses: actions/[email protected]
3434
with:
3535
node-version: ${{matrix.node-version}}
36-
- uses: actions/setup-java@v3
36+
- name: Setup java 17
37+
uses: actions/setup-java@v3
3738
with:
3839
distribution: 'temurin'
3940
java-version: '17'
@@ -44,6 +45,88 @@ jobs:
4445
- name: Run tests
4546
run: npm test
4647
timeout-minutes: 20
48+
- name: Create package
49+
if: ${{matrix.node-version == '18.x'}}
50+
run: |
51+
node -e 'let p=require("./package.json");p.files.push("dist/*.node");require("fs").writeFileSync("package.json",JSON.stringify(p,null,4))'
52+
npm pack
53+
- name: Upload package
54+
uses: actions/upload-artifact@v3
55+
if: ${{matrix.node-version == '18.x'}}
56+
with:
57+
name: java-x64-${{matrix.os}}
58+
path: java-bridge-*.tgz
59+
60+
test-linux-aarch64-gnu-binding:
61+
strategy:
62+
fail-fast: false
63+
matrix:
64+
node-version: [16, 18]
65+
runs-on: ubuntu-20.04
66+
steps:
67+
- uses: actions/checkout@v3
68+
- name: Setup Node.js ${{matrix.node-version}} environment
69+
uses: actions/[email protected]
70+
with:
71+
node-version: ${{matrix.node-version}}
72+
- name: Setup java 17
73+
uses: actions/setup-java@v3
74+
with:
75+
distribution: 'temurin'
76+
java-version: '17'
77+
- name: Install rust toolchain
78+
uses: actions-rs/toolchain@v1
79+
with:
80+
toolchain: stable
81+
profile: minimal
82+
override: true
83+
target: aarch64-unknown-linux-gnu
84+
- name: Rust Cache
85+
uses: Swatinem/[email protected]
86+
- name: Install cross compile toolchain
87+
run: |
88+
sudo apt-get update
89+
sudo apt-get install gcc-multilib -y
90+
sudo apt-get install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu -y
91+
- name: Set linker
92+
run: |
93+
mkdir .cargo
94+
printf '[target.aarch64-unknown-linux-gnu]\nlinker = "aarch64-linux-gnu-gcc"\n' >> .cargo/config
95+
- name: Install
96+
run: npm ci
97+
- name: Build
98+
run: npm run build -- -- --target aarch64-unknown-linux-gnu
99+
- name: Install test dependencies
100+
run: |
101+
npm config set supportedArchitectures.cpu "arm64"
102+
npm config set supportedArchitectures.libc "glibc"
103+
npm install
104+
- name: Init qemu
105+
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
106+
- name: Run tests
107+
uses: addnab/docker-run-action@v3
108+
timeout-minutes: 30
109+
with:
110+
image: arm64v8/node:${{matrix.node-version}}-bullseye
111+
options: -v ${{ github.workspace }}:/github/workspace -w /github/workspace
112+
run: |
113+
apt-get update
114+
apt-get install openjdk-17-jre-headless -y
115+
npm config set cache /tmp --global
116+
export CI=true
117+
npm install
118+
npm run testOnly
119+
- name: Create package
120+
if: ${{matrix.node-version == '18'}}
121+
run: |
122+
node -e 'let p=require("./package.json");p.files.push("dist/*.node");require("fs").writeFileSync("package.json",JSON.stringify(p,null,4))'
123+
npm pack
124+
- name: Upload package
125+
uses: actions/upload-artifact@v3
126+
if: ${{matrix.node-version == '18'}}
127+
with:
128+
name: java-arm64-ubuntu
129+
path: java-bridge-*.tgz
47130

48131
benchmark:
49132
runs-on: ubuntu-latest
@@ -55,7 +138,7 @@ jobs:
55138
node-version: 16.x
56139
- uses: actions/setup-java@v3
57140
with:
58-
distribution: 'temurin' # See 'Supported distributions' for available options
141+
distribution: 'temurin'
59142
java-version: '17'
60143
- name: Rust Cache
61144
uses: Swatinem/[email protected]

npm/linux-arm64-gnu/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# `java-bridge-linux-arm64-gnu`
2+
3+
This is the **aarch64-unknown-linux-gnu** binary for `java-bridge`

npm/linux-arm64-gnu/package.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "java-bridge-linux-arm64-gnu",
3+
"version": "0.0.0",
4+
"os": [
5+
"linux"
6+
],
7+
"cpu": [
8+
"arm64"
9+
],
10+
"main": "java.linux-arm64-gnu.node",
11+
"files": [
12+
"java.linux-arm64-gnu.node"
13+
],
14+
"license": "MIT",
15+
"engines": {
16+
"node": ">= 10"
17+
},
18+
"libc": [
19+
"glibc"
20+
]
21+
}

0 commit comments

Comments
 (0)