napi-rs/.github/workflows/windows-i686.yml

79 lines
1.9 KiB
YAML
Raw Normal View History

name: Windows i686
env:
DEBUG: 'napi:*'
on:
push:
2020-12-03 17:30:14 +09:00
branches:
- main
pull_request:
jobs:
build_and_test:
2021-11-19 15:58:21 +09:00
name: stable - windows-latest - i686 - node@16
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
2021-11-19 15:58:21 +09:00
uses: actions/setup-node@v2
with:
2021-11-19 15:58:21 +09:00
node-version: 16
check-latest: true
architecture: 'x86'
cache: 'yarn'
2020-11-10 12:09:25 +09:00
- name: 'Install dependencies'
2020-12-09 12:03:59 +09:00
run: yarn install --frozen-lockfile --registry https://registry.npmjs.org --network-timeout 300000
2020-11-10 12:09:25 +09:00
- name: 'Build TypeScript'
run: yarn build
- name: Install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Install i686 toolchain
run: rustup target add i686-pc-windows-msvc
- 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
2020-11-10 12:09:25 +09:00
key: stable-windows-i686-node@lts-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
2020-11-10 12:09:25 +09:00
key: stable-windows-i686-node@lts-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Check build
uses: actions-rs/cargo@v1
with:
command: check
args: --all --bins --examples --tests --target i686-pc-windows-msvc -vvv
2020-11-10 12:09:25 +09:00
- name: Build Tests
run: |
yarn --cwd ./examples/napi-compat-mode build-i686
yarn --cwd ./examples/napi build-i686
2020-11-10 12:09:25 +09:00
yarn test
env:
RUST_BACKTRACE: 1
- name: Clear the cargo caches
run: |
cargo install cargo-cache --no-default-features --features ci-autoclean
cargo-cache