Remove the thread pool from future::Cache
#884
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: CI (Quanta disabled) | |
on: | |
push: | |
paths-ignore: | |
- '.devcontainer/**' | |
- '.gitpod.yml' | |
- '.vscode/**' | |
pull_request: | |
paths-ignore: | |
- '.devcontainer/**' | |
- '.gitpod.yml' | |
- '.vscode/**' | |
schedule: | |
# Run against the last commit on the default branch on Friday at 8pm (UTC?) | |
- cron: '0 20 * * 5' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
- beta | |
- 1.65.0 # MSRV | |
- nightly # For checking minimum version dependencies. | |
steps: | |
- name: Checkout Moka | |
uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
override: true | |
components: rustfmt, clippy | |
- uses: Swatinem/rust-cache@v1 | |
- name: cargo clean | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clean | |
- name: Downgrade dependencies to minimal versions (Nightly only) | |
uses: actions-rs/cargo@v1 | |
if: ${{ matrix.rust == 'nightly' }} | |
with: | |
command: update | |
args: -Z minimal-versions | |
- name: Pin some dependencies to specific versions (Nightly only) | |
if: ${{ matrix.rust == 'nightly' }} | |
run: | | |
cargo update -p openssl --precise 0.10.39 | |
cargo update -p cc --precise 1.0.61 | |
# - name: Pin some dependencies to specific versions (MSRV only) | |
# if: ${{ matrix.rust == '1.65.0' }} | |
# run: | | |
# cargo update -p <crate> --precise <version> | |
- name: Run tests (debug, but no quanta feature) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --no-default-features --features 'sync, atomic64' | |
env: | |
RUSTFLAGS: '--cfg rustver' | |
- name: Run tests (release, but no quanta feature) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --release --no-default-features --features 'sync, atomic64' | |
env: | |
RUSTFLAGS: '--cfg rustver' | |
- name: Run tests (future feature, but no quanta and sync features) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --no-default-features --features 'future, atomic64' | |
- name: Run tests (future, sync and logging features, but no quanta feature) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --no-default-features --features 'sync, future, atomic64, logging' |