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

83 lines
2.1 KiB
YAML
Raw Normal View History

2020-10-14 17:15:20 +09:00
name: Linux-aarch64
env:
DEBUG: 'napi:*'
2021-10-27 16:09:40 +09:00
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: 'aarch64-linux-gnu-gcc'
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:
2021-11-19 15:58:21 +09:00
name: stable - aarch64-unknown-linux-gnu - node@16
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
2020-10-14 17:15:20 +09:00
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v3
with:
2021-11-19 15:58:21 +09:00
node-version: 16
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
- name: Install aarch64 toolchain
run: rustup target add aarch64-unknown-linux-gnu
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
with:
command: generate-lockfile
- name: Cache cargo registry
2021-07-30 14:20:40 +09:00
uses: actions/cache@v2
with:
path: ~/.cargo/registry
2021-11-19 15:58:21 +09:00
key: stable-linux-aarch64-gnu-node@16-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
2021-07-30 14:20:40 +09:00
uses: actions/cache@v2
with:
path: ~/.cargo/git
2021-11-19 15:58:21 +09:00
key: stable-linux-aarch64-gnu-node@16-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache NPM dependencies
2021-07-30 14:20:40 +09:00
uses: actions/cache@v2
with:
path: node_modules
2021-11-19 15:58:21 +09:00
key: npm-cache-linux-aarch64-gnu-node@16-${{ hashFiles('yarn.lock') }}
- name: Install cross compile toolchain
2021-10-27 16:09:40 +09:00
run: |
sudo apt-get update
sudo apt-get install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu -y
- name: Install dependencies
2022-01-24 12:33:51 +09:00
run: yarn install --immutable --network-timeout 300000
- 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