Put the troubleshooting section back in the README #21
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 enabled) | |
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: | |
pre_job: | |
runs-on: ubuntu-latest | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
# https://github.com/marketplace/actions/skip-duplicate-actions | |
uses: fkirc/skip-duplicate-actions@v5 | |
with: | |
concurrent_skipping: 'same_content' | |
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' | |
test: | |
needs: pre_job | |
if: needs.pre_job.outputs.should_skip != 'true' | |
runs-on: ubuntu-latest | |
strategy: | |
# Continue running other jobs in the matrix even if one fails. | |
fail-fast: false | |
matrix: | |
rust: | |
- stable | |
- beta | |
- 1.70.0 # MSRV | |
- nightly # For checking minimum version dependencies. | |
steps: | |
- name: Checkout Moka | |
uses: actions/checkout@v4 | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Downgrade dependencies to minimal versions (Nightly only) | |
if: ${{ matrix.rust == 'nightly' }} | |
run: cargo update -Z minimal-versions | |
- name: Pin some dependencies to specific versions (Nightly only) | |
if: ${{ matrix.rust == 'nightly' }} | |
run: ./.ci_extras/pin-crate-vers-nightly.sh | |
- name: Pin some dependencies to specific versions (MSRV only) | |
if: ${{ matrix.rust == '1.70.0' }} | |
run: ./.ci_extras/pin-crate-vers-msrv.sh | |
- name: Remove some examples (MSRV only) | |
if: ${{ matrix.rust == '1.70.0' }} | |
run: ./.ci_extras/remove-examples-msrv.sh | |
- name: Show cargo tree | |
run: cargo tree --features 'sync, future, quanta' | |
- name: Run tests (debug, sync, quanta features) | |
run: cargo test --features 'sync, quanta' | |
env: | |
RUSTFLAGS: '--cfg rustver' | |
- name: Run tests (release, sync, quanta features) | |
run: cargo test --release --features 'sync, quanta' | |
env: | |
RUSTFLAGS: '--cfg rustver' | |
- name: Run tests (debug, future, quanta features) | |
run: cargo test --features 'future, quanta' | |
- name: Run tests (release, future, quanta features) | |
run: cargo test --release --features 'future, quanta' | |
- name: Run tests (future, sync, logging, quanta features) | |
run: cargo test --features 'sync, future, quanta, logging' | |
- name: Run tests (sync, quanta features, drop cache) | |
run: cargo test --release --lib --features 'sync, quanta' sync::cache::tests::ensure_gc_runs_when_dropping_cache -- --exact --ignored |