napi-rs/.github/workflows/linux-aarch64.yaml

65 lines
1.4 KiB
YAML
Raw Normal View History

2020-10-14 17:15:20 +09:00
name: Linux-aarch64
env:
DEBUG: 'napi:*'
2020-10-14 17:15:20 +09:00
on:
push:
2020-12-03 17:30:14 +09:00
branches:
- main
2020-10-14 17:15:20 +09:00
pull_request:
jobs:
build:
2022-12-09 18:29:03 +09:00
name: stable - aarch64-unknown-linux-gnu - node@18
2021-10-27 16:09:40 +09:00
runs-on: ubuntu-latest
2020-10-14 17:15:20 +09:00
steps:
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
2022-04-01 15:29:51 +09:00
- uses: actions/checkout@v3
2020-10-14 17:15:20 +09:00
- name: Setup node
uses: actions/setup-node@v3
with:
2022-12-09 18:29:03 +09:00
node-version: 18
2020-11-10 12:09:25 +09:00
check-latest: true
2021-11-19 15:58:21 +09:00
cache: 'yarn'
- name: Install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
2022-10-24 00:03:18 +09:00
target: aarch64-unknown-linux-gnu
2022-04-01 15:29:51 +09:00
- name: Cache cargo
uses: actions/cache@v3
with:
2022-04-01 15:29:51 +09:00
path: |
~/.cargo/registry
~/.cargo/git
2022-12-09 19:56:50 +09:00
key: stable-linux-aarch64-gnu-node@18-cargo-cache
2022-12-09 18:29:03 +09:00
- name: Install ziglang
uses: goto-bus-stop/setup-zig@v2
with:
2022-12-09 18:29:03 +09:00
version: 0.10.0
- name: Install dependencies
2022-04-01 15:29:51 +09:00
run: yarn install --immutable --mode=skip-build
- name: 'Build TypeScript'
run: yarn build
- name: Cross build native tests
run: yarn build:test:aarch64
- name: Setup and run tests
2021-10-27 16:09:40 +09:00
uses: addnab/docker-run-action@v3
2020-10-14 17:15:20 +09:00
with:
2021-11-19 15:58:21 +09:00
image: ghcr.io/napi-rs/napi-rs/nodejs:aarch64-16
2021-10-27 16:09:40 +09:00
options: -v ${{ github.workspace }}:/build -w /build
run: yarn test