Fix Clippy warnings and fix the CI for the minimal crate versions #2465
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 | |
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.65.0 # MSRV | |
- nightly # For checking minimum version dependencies. | |
steps: | |
- name: Checkout Moka | |
uses: actions/checkout@v4 | |
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories | |
# x86_64, 4 vCPUs, 16 GB RAM | |
- name: Show CPU into | |
run: | | |
echo "nproc: $(nproc)" | |
free -m | |
lscpu | |
- 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.65.0' }} | |
run: ./.ci_extras/pin-crate-vers-msrv.sh | |
- name: Remove some examples (MSRV only) | |
if: ${{ matrix.rust == '1.65.0' }} | |
run: ./.ci_extras/remove-examples-msrv.sh | |
- name: Show cargo tree | |
run: cargo tree --features 'sync, future' | |
- name: Run tests (debug, sync feature) | |
run: cargo test --features sync | |
env: | |
RUSTFLAGS: '--cfg rustver' | |
- name: Run tests (release, sync feature) | |
run: cargo test --release --features sync | |
env: | |
RUSTFLAGS: '--cfg rustver' | |
- name: Run tests (sync feature, key lock test for notification) | |
run: cargo test --release --lib --features sync sync::cache::tests::test_key_lock_used_by_immediate_removal_notifications -- --exact --ignored | |
- name: Run tests (sync feature, drop value after eviction for sync::Cache) | |
run: cargo test --release --lib --features sync sync::cache::tests::drop_value_immediately_after_eviction -- --exact --ignored | |
- name: Run tests (sync feature, drop value after eviction for sync::SegmentedCache) | |
run: cargo test --release --lib --features sync sync::segment::tests::drop_value_immediately_after_eviction -- --exact --ignored | |
- name: Run tests (sync feature, drop cache) | |
run: cargo test --release --lib --features sync sync::cache::tests::ensure_gc_runs_when_dropping_cache -- --exact --ignored | |
- name: Run tests (future feature, but no sync feature) | |
run: cargo test --no-default-features --features 'future, atomic64, quanta' | |
- name: Run tests (future, sync and logging features) | |
run: cargo test --features 'future, sync, logging' |