2020-10-14 17:15:20 +09:00
|
|
|
name: Linux-aarch64
|
|
|
|
|
2020-10-15 17:14:11 +09:00
|
|
|
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:
|
2022-04-01 15:29:51 +09:00
|
|
|
- uses: actions/checkout@v3
|
2020-10-14 17:15:20 +09:00
|
|
|
|
2020-10-15 17:14:11 +09:00
|
|
|
- name: Setup node
|
2022-03-05 15:14:32 +09:00
|
|
|
uses: actions/setup-node@v3
|
2020-10-15 17:14:11 +09:00
|
|
|
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'
|
2020-10-15 17:14:11 +09:00
|
|
|
|
|
|
|
- name: Install
|
2023-03-12 19:24:48 +09:00
|
|
|
uses: dtolnay/rust-toolchain@stable
|
2020-10-15 17:14:11 +09:00
|
|
|
with:
|
|
|
|
toolchain: stable
|
2023-03-12 19:24:48 +09:00
|
|
|
targets: aarch64-unknown-linux-gnu
|
2020-10-15 17:14:11 +09:00
|
|
|
|
2022-04-01 15:29:51 +09:00
|
|
|
- name: Cache cargo
|
|
|
|
uses: actions/cache@v3
|
2020-10-15 17:14:11 +09:00
|
|
|
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
|
2020-10-15 17:14:11 +09:00
|
|
|
|
2022-12-09 18:29:03 +09:00
|
|
|
- name: Install ziglang
|
|
|
|
uses: goto-bus-stop/setup-zig@v2
|
2020-10-15 17:14:11 +09:00
|
|
|
with:
|
2023-03-12 19:24:48 +09:00
|
|
|
version: 0.10.1
|
2020-10-15 17:14:11 +09:00
|
|
|
|
|
|
|
- name: Install dependencies
|
2022-04-01 15:29:51 +09:00
|
|
|
run: yarn install --immutable --mode=skip-build
|
2020-10-15 17:14:11 +09:00
|
|
|
|
|
|
|
- name: 'Build TypeScript'
|
|
|
|
run: yarn build
|
|
|
|
|
|
|
|
- name: Cross build native tests
|
|
|
|
run: yarn build:test:aarch64
|
|
|
|
|
2023-03-12 19:24:48 +09:00
|
|
|
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
|
|
|
|
2020-10-15 17:14:11 +09:00
|
|
|
- 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:
|
2023-03-12 19:24:48 +09:00
|
|
|
image: node:lts-slim
|
|
|
|
options: --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build
|
2021-10-27 16:09:40 +09:00
|
|
|
run: yarn test
|