28257b45c1
drop future executor due to mutithreads bug.
75 lines
1.9 KiB
YAML
75 lines
1.9 KiB
YAML
name: macOS
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build_and_test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
node: ['10', '12', '13', '14']
|
|
|
|
name: stable - x86_64-apple-darwin - node@${{ matrix.node }}
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
|
|
- name: Install stable
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable-x86_64-apple-darwin
|
|
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') }}
|
|
- name: Cache cargo index
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: ~/.cargo/git
|
|
key: stable-x86_64-apple-darwin-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
|
- name: Cache cargo build
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: target
|
|
key: stable-x86_64-apple-darwin-cargo-build-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Check build
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: check
|
|
args: --all --bins --examples --tests -vvv
|
|
|
|
- name: Tests
|
|
uses: actions-rs/cargo@v1
|
|
timeout-minutes: 5
|
|
with:
|
|
command: test
|
|
args: -p napi-rs --lib -- --nocapture
|
|
|
|
- name: Fuzzy tests
|
|
run: |
|
|
yarn
|
|
cd test_module
|
|
yarn build
|
|
node fuzzy.js
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
|
|
- name: Clear the cargo caches
|
|
run: |
|
|
cargo install cargo-cache --no-default-features --features ci-autoclean
|
|
cargo-cache
|