2020-10-14 17:15:20 +09:00
|
|
|
name: Linux-aarch64
|
|
|
|
|
2020-10-15 17:14:11 +09:00
|
|
|
env:
|
|
|
|
DEBUG: 'napi:*'
|
2021-03-11 01:19:38 +09:00
|
|
|
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: 'aarch64-linux-gnu-gcc-9'
|
2020-10-15 17:14:11 +09:00
|
|
|
|
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:
|
2020-10-15 21:16:52 +09:00
|
|
|
name: stable - aarch64-unknown-linux-gnu - node@14
|
2021-03-11 01:19:38 +09:00
|
|
|
runs-on: ubuntu-20.04
|
2020-10-14 17:15:20 +09:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
2020-10-15 17:14:11 +09:00
|
|
|
|
2020-10-14 17:15:20 +09:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2020-10-15 17:14:11 +09:00
|
|
|
- name: Setup node
|
2021-01-06 00:53:23 +09:00
|
|
|
uses: actions/setup-node@v2
|
2020-10-15 17:14:11 +09:00
|
|
|
with:
|
|
|
|
node-version: 14
|
2020-11-10 12:09:25 +09:00
|
|
|
check-latest: true
|
2020-10-15 17:14:11 +09:00
|
|
|
|
|
|
|
- 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
|
2020-10-15 17:14:11 +09:00
|
|
|
with:
|
|
|
|
path: ~/.cargo/registry
|
2020-10-15 21:16:52 +09:00
|
|
|
key: stable-linux-aarch64-gnu-node@14-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
2020-10-15 17:14:11 +09:00
|
|
|
|
|
|
|
- name: Cache cargo index
|
2021-07-30 14:20:40 +09:00
|
|
|
uses: actions/cache@v2
|
2020-10-15 17:14:11 +09:00
|
|
|
with:
|
|
|
|
path: ~/.cargo/git
|
2020-10-15 21:16:52 +09:00
|
|
|
key: stable-linux-aarch64-gnu-node@14-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
2020-10-15 17:14:11 +09:00
|
|
|
|
|
|
|
- name: Cache NPM dependencies
|
2021-07-30 14:20:40 +09:00
|
|
|
uses: actions/cache@v2
|
2020-10-15 17:14:11 +09:00
|
|
|
with:
|
|
|
|
path: node_modules
|
2020-10-15 21:16:52 +09:00
|
|
|
key: npm-cache-linux-aarch64-gnu-node@14-${{ hashFiles('yarn.lock') }}
|
2020-10-15 17:14:11 +09:00
|
|
|
|
|
|
|
- name: Install cross compile toolchain
|
2021-03-11 01:19:38 +09:00
|
|
|
run: sudo apt-get install gcc-9-aarch64-linux-gnu g++-9-aarch64-linux-gnu -y
|
2020-10-15 17:14:11 +09:00
|
|
|
|
|
|
|
- name: Install dependencies
|
2021-07-22 00:46:45 +09:00
|
|
|
run: yarn install --frozen-lockfile --ignore-platform --registry https://registry.npmjs.org --network-timeout 300000
|
2020-10-15 17:14:11 +09:00
|
|
|
|
|
|
|
- name: 'Build TypeScript'
|
|
|
|
run: yarn build
|
|
|
|
|
|
|
|
- name: Cross build native tests
|
|
|
|
run: yarn build:test:aarch64
|
|
|
|
|
|
|
|
- name: Setup and run tests
|
2020-10-14 17:15:20 +09:00
|
|
|
uses: docker://multiarch/ubuntu-core:arm64-focal
|
|
|
|
with:
|
|
|
|
args: >
|
|
|
|
sh -c "
|
|
|
|
apt-get update && \
|
2020-10-15 17:14:11 +09:00
|
|
|
apt-get install -y ca-certificates gnupg2 curl && \
|
2020-10-14 17:15:20 +09:00
|
|
|
curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
|
|
|
|
apt-get install -y nodejs && \
|
2020-10-15 17:14:11 +09:00
|
|
|
npm test
|
2020-10-14 17:15:20 +09:00
|
|
|
"
|