napi-rs/.github/workflows/macos.yaml

76 lines
1.9 KiB
YAML
Raw Normal View History

2020-02-18 22:09:17 +09:00
name: macOS
on: [push, pull_request]
jobs:
build_and_test:
strategy:
fail-fast: false
matrix:
2020-04-30 19:08:29 +09:00
node: ['10', '12', '13', '14']
2020-02-18 22:09:17 +09:00
name: stable - x86_64-apple-darwin - node@${{ matrix.node }}
2020-02-18 22:09:17 +09:00
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
2020-02-18 22:09:17 +09:00
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install stable
2020-02-18 22:09:17 +09:00
uses: actions-rs/toolchain@v1
with:
toolchain: stable-x86_64-apple-darwin
2020-02-18 22:09:17 +09:00
profile: minimal
override: true
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
with:
command: generate-lockfile
- name: Cache cargo registry
uses: actions/cache@v1
with:
path: ~/.cargo/registry
key: stable-x86_64-apple-darwin-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
2020-02-18 22:09:17 +09:00
- name: Cache cargo index
uses: actions/cache@v1
with:
path: ~/.cargo/git
key: stable-x86_64-apple-darwin-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
2020-02-18 22:09:17 +09:00
- name: Cache cargo build
uses: actions/cache@v1
with:
path: target
key: stable-x86_64-apple-darwin-cargo-build-trimmed-${{ hashFiles('**/Cargo.lock') }}
2020-02-18 22:09:17 +09:00
- name: Check build
2020-02-18 22:09:17 +09:00
uses: actions-rs/cargo@v1
with:
command: check
args: --all --bins --examples --tests -vvv
- name: Tests
2020-02-18 22:09:17 +09:00
uses: actions-rs/cargo@v1
timeout-minutes: 5
2020-02-18 22:09:17 +09:00
with:
command: test
args: -p napi-rs --lib -- --nocapture
- name: Fuzzy tests
2020-02-18 22:09:17 +09:00
run: |
2020-02-19 00:05:13 +09:00
yarn
2020-02-18 22:09:17 +09:00
cd test_module
2020-02-19 00:05:13 +09:00
yarn build
node fuzzy.js
env:
RUST_BACKTRACE: 1
2020-02-18 22:09:17 +09:00
- name: Clear the cargo caches
run: |
cargo install cargo-cache --no-default-features --features ci-autoclean
cargo-cache