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

65 lines
1.5 KiB
YAML
Raw Normal View History

2020-12-08 12:23:26 +09:00
name: Linux-armv7
env:
DEBUG: 'napi:*'
2023-03-12 19:31:13 +09:00
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2020-12-08 12:23:26 +09:00
on:
push:
branches:
- main
pull_request:
jobs:
build:
2022-12-09 18:29:03 +09:00
name: stable - armv7-unknown-linux-gnu - node@18
2021-10-27 16:09:40 +09:00
runs-on: ubuntu-latest
2020-12-08 12:23:26 +09:00
steps:
2022-04-01 15:29:51 +09:00
- uses: actions/checkout@v3
2020-12-08 12:23:26 +09:00
- name: Setup node
uses: actions/setup-node@v3
2020-12-08 12:23:26 +09:00
with:
2022-12-09 18:29:03 +09:00
node-version: 18
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
2023-03-12 19:24:48 +09:00
uses: dtolnay/rust-toolchain@stable
2020-12-08 12:23:26 +09:00
with:
toolchain: stable
2023-03-12 19:24:48 +09:00
targets: armv7-unknown-linux-gnueabihf
2020-12-08 12:23:26 +09:00
2022-12-09 18:29:03 +09:00
- name: Install ziglang
uses: goto-bus-stop/setup-zig@v2
with:
2023-01-19 14:31:02 +09:00
version: 0.10.1
2022-12-09 18:29:03 +09:00
2022-04-01 15:29:51 +09:00
- name: Cache cargo
2022-12-09 18:29:03 +09:00
uses: actions/cache@v3
2020-12-08 12:23:26 +09:00
with:
2022-04-15 22:22:04 +09:00
path: |
~/.cargo/registry
~/.cargo/git
target
2022-12-09 18:29:03 +09:00
key: stable-linux-armv7-gnu-node@18-cargo-cache
2020-12-08 12:23:26 +09:00
- name: Install dependencies
2022-04-01 15:29:51 +09:00
run: yarn install --immutable --mode=skip-build
2020-12-08 12:23:26 +09:00
- name: Cross build native tests
run: yarn build:test -- --target armv7-unknown-linux-gnueabihf --cross-compile
2020-12-08 12:23:26 +09:00
2023-03-12 19:24:48 +09:00
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
2020-12-08 12:23:26 +09:00
- 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:
2023-03-12 19:24:48 +09:00
image: node:lts-bullseye-slim
options: --platform linux/arm/v7 -v ${{ github.workspace }}:/build -w /build
2021-10-27 16:09:40 +09:00
run: yarn test