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

83 lines
2.2 KiB
YAML
Raw Normal View History

2020-12-08 12:23:26 +09:00
name: Linux-armv7
env:
DEBUG: 'napi:*'
2021-10-27 16:09:40 +09:00
CARGO_TARGET_ARMV7_UNKNOWN_LINUX_GNUEABIHF_LINKER: 'arm-linux-gnueabihf-gcc'
2020-12-08 12:23:26 +09:00
on:
push:
branches:
- main
pull_request:
jobs:
build:
2021-11-19 15:58:21 +09:00
name: stable - armv7-unknown-linux-gnu - node@16
2021-10-27 16:09:40 +09:00
runs-on: ubuntu-latest
2020-12-08 12:23:26 +09:00
steps:
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
- uses: actions/checkout@v2
- name: Setup node
2021-01-06 00:53:23 +09:00
uses: actions/setup-node@v2
2020-12-08 12:23:26 +09:00
with:
2021-11-19 15:58:21 +09:00
node-version: 16
2020-12-08 12:23:26 +09:00
check-latest: true
2021-11-19 15:58:21 +09:00
cache: 'yarn'
2020-12-08 12:23:26 +09:00
- name: Install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Install armv7 toolchain
run: rustup target add armv7-unknown-linux-gnueabihf
- 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-12-08 12:23:26 +09:00
with:
path: ~/.cargo/registry
2021-11-19 15:58:21 +09:00
key: stable-linux-armv7-gnu-node@16-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
2020-12-08 12:23:26 +09:00
- name: Cache cargo index
2021-07-30 14:20:40 +09:00
uses: actions/cache@v2
2020-12-08 12:23:26 +09:00
with:
path: ~/.cargo/git
2021-11-19 15:58:21 +09:00
key: stable-linux-armv7-gnu-node@16-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
2020-12-08 12:23:26 +09:00
- name: Cache NPM dependencies
2021-07-30 14:20:40 +09:00
uses: actions/cache@v2
2020-12-08 12:23:26 +09:00
with:
path: node_modules
2021-11-19 15:58:21 +09:00
key: npm-cache-linux-armv7-gnu-node@16-${{ hashFiles('yarn.lock') }}
2020-12-08 12:23:26 +09:00
- name: Install cross compile toolchain
2021-10-27 16:09:40 +09:00
run: |
sudo apt-get update
sudo apt-get install gcc-arm-linux-gnueabihf -y
2020-12-08 12:23:26 +09:00
- name: Install dependencies
run: yarn install --frozen-lockfile --ignore-platform --registry https://registry.npmjs.org --network-timeout 300000
2020-12-08 12:23:26 +09:00
- name: 'Build TypeScript'
run: yarn build
- name: Cross build native tests
run: yarn build:test:armv7
- name: Setup and run tests
2021-10-27 16:09:40 +09:00
uses: addnab/docker-run-action@v3
2020-12-08 12:23:26 +09:00
with:
2021-11-19 15:58:21 +09:00
image: ghcr.io/napi-rs/napi-rs/nodejs:armhf-16
2021-10-27 16:09:40 +09:00
options: -v ${{ github.workspace }}:/build -w /build
run: yarn test