a781a4f27e
BREAKING CHANGE: requires node >= 16 and some cli options have been renamed
62 lines
1.5 KiB
YAML
62 lines
1.5 KiB
YAML
name: Windows arm64
|
|
|
|
env:
|
|
DEBUG: 'napi:*'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build_and_test:
|
|
name: stable - windows-latest - arm64 - node@18
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: 'yarn'
|
|
|
|
- name: 'Install dependencies'
|
|
run: yarn install --mode=skip-build --immutable
|
|
|
|
- name: Install
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
toolchain: stable
|
|
targets: aarch64-pc-windows-msvc
|
|
|
|
- name: Cache cargo
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
target
|
|
key: stable-windows-arm64-node@16-cargo-cache
|
|
|
|
- name: Check build
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: check
|
|
args: --all --bins --examples --tests --target aarch64-pc-windows-msvc -vvv
|
|
|
|
- name: Build release target
|
|
run: |
|
|
yarn workspace @examples/napi build --target aarch64-pc-windows-msvc --release
|
|
yarn workspace @examples/compat-mode build --target aarch64-pc-windows-msvc --release
|
|
|
|
- name: Clear the cargo caches
|
|
run: |
|
|
cargo install cargo-cache --no-default-features --features ci-autoclean
|
|
cargo-cache
|