ca3790bdf1
feat(cli): add support for cross compilation with Zig
69 lines
1.7 KiB
YAML
69 lines
1.7 KiB
YAML
name: Linux-aarch64-zig
|
|
|
|
env:
|
|
DEBUG: 'napi:*'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
name: stable - aarch64-unknown-linux-gnu - node@16
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 16
|
|
check-latest: true
|
|
cache: 'yarn'
|
|
|
|
- name: Install
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
profile: minimal
|
|
override: true
|
|
target: aarch64-unknown-linux-musl
|
|
|
|
- name: Install aarch64 toolchain
|
|
run: rustup target add aarch64-unknown-linux-gnu
|
|
|
|
- name: Install ziglang
|
|
uses: goto-bus-stop/setup-zig@v1
|
|
with:
|
|
version: 0.9.0
|
|
|
|
- name: Cache NPM dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: node_modules
|
|
key: npm-cache-linux-aarch64-gnu-node@16-${{ hashFiles('yarn.lock') }}
|
|
|
|
- name: Install dependencies
|
|
run: yarn install --frozen-lockfile --ignore-platform --registry https://registry.npmjs.org --network-timeout 300000
|
|
|
|
- name: 'Build TypeScript'
|
|
run: yarn build
|
|
|
|
- name: Cross build native tests
|
|
run: |
|
|
yarn --cwd ./examples/napi-compat-mode build --target aarch64-unknown-linux-musl --zig
|
|
yarn --cwd ./examples/napi build --target aarch64-unknown-linux-musl --zig
|
|
|
|
- name: Setup and run tests
|
|
uses: docker://multiarch/alpine:aarch64-latest-stable
|
|
with:
|
|
args: >
|
|
sh -c "
|
|
apk add nodejs yarn && \
|
|
yarn test
|
|
"
|