Update a few dependencies #269
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
schedule: | |
- cron: '0 22 * * FRI' | |
push: | |
branches: [ master, ci, par, byods ] | |
pull_request: | |
branches: [ master, byods ] | |
paths-ignore: | |
- '**/*.MD' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: cargo --version | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
override: true | |
toolchain: 1.66 | |
- run: cargo --version | |
- name: Run ascent_tests tests | |
working-directory: ./ascent_tests | |
run: cargo test | |
- name: Run ascent_tests tests with `--features par` | |
working-directory: ./ascent_tests | |
run: cargo test --features par | |
- name: Run ./ascent tests | |
working-directory: ./ascent | |
run: cargo test | |
- name: Run ascent_base tests | |
working-directory: ./ascent_base | |
run: cargo test | |
- uses: jetli/[email protected] | |
with: | |
# Optional version of wasm-pack to install(eg. 'v0.9.1', 'latest') | |
version: 'latest' | |
- name: Run wasm tests | |
working-directory: ./wasm-tests | |
run: | | |
cargo tree | |
wasm-pack test --headless --firefox | |
# macro tests should be last, because they produce scratchpad.rs, which my not compile | |
- name: Run macro tests | |
working-directory: ./ascent_macro | |
run: cargo test test | |
bench: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: cargo --version | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
override: true | |
toolchain: 1.66 | |
- name: Run Benchmarks | |
working-directory: ./ascent_tests | |
run: cargo bench bench_tc -- --nocapture | |
- name: Run ascent_tests/src/bin benchmarks | |
working-directory: ./ascent_tests | |
run: cargo run --release --bin tc && cargo run --release --features par --bin tc | |
examples: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: run examples | |
working-directory: ./ascent | |
run: | | |
for example in ./examples/*rs | |
do | |
cargo run --example "$(basename "${example%.rs}")" || exit 1 | |
done | |
byods-rels: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: cargo check (no-default-features) | |
working-directory: ./byods/ascent-byods-rels | |
run: cargo check --no-default-features | |
- name: cargo check | |
working-directory: ./byods/ascent-byods-rels | |
run: cargo check | |
- name: cargo check (examples) | |
working-directory: ./byods/ascent-byods-rels/examples | |
run: cargo check --bins | |
- name: cargo test | |
working-directory: ./byods/ascent-byods-rels | |
run: cargo test | |
dependency-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: cargo --version | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
override: true | |
toolchain: nightly | |
- uses: taiki-e/install-action@cargo-hack | |
- uses: taiki-e/install-action@cargo-minimal-versions | |
- name: cargo minimal-versions | |
run: cargo +stable minimal-versions check --workspace --all-features --ignore-private -v | |