Skip to content

Commit

Permalink
Merge pull request #244 from moka-rs/fix-ci-2023-03-24
Browse files Browse the repository at this point in the history
Fix the CI for MSRV and Rust nightly (cc, thiserror, serde)
  • Loading branch information
tatsuya6502 authored Mar 24, 2023
2 parents 5c9765a + 333cda3 commit 0acb76b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ linux_arm64_task:
echo 'Downgrading dependencies to minimal versions'
cargo update -Z minimal-versions
cargo update -p openssl --precise 0.10.39
cargo update -p cc --precise 1.0.61
else
echo 'Skipped'
fi
Expand All @@ -62,6 +63,8 @@ linux_arm64_task:
cargo update -p pulldown-cmark --precise 0.9.1
cargo update -p once_cell --precise 1.14.0
cargo update -p tokio-native-tls --precise 0.3.0
cargo update -p thiserror --precise 1.0.39
cargo update -p serde --precise 1.0.156
else
echo 'Skipped'
fi
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
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.51.0' }}
Expand All @@ -84,6 +85,8 @@ jobs:
cargo update -p pulldown-cmark --precise 0.9.1
cargo update -p once_cell --precise 1.14.0
cargo update -p tokio-native-tls --precise 0.3.0
cargo update -p thiserror --precise 1.0.39
cargo update -p serde --precise 1.0.156
- name: Show cargo tree
uses: actions-rs/cargo@v1
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/CIQuantaDisabled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
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.51.0' }}
Expand All @@ -77,6 +78,8 @@ jobs:
cargo update -p pulldown-cmark --precise 0.9.1
cargo update -p once_cell --precise 1.14.0
cargo update -p tokio-native-tls --precise 0.3.0
cargo update -p thiserror --precise 1.0.39
cargo update -p serde --precise 1.0.156
- name: Run tests (debug, but no quanta feature)
uses: actions-rs/cargo@v1
Expand Down

0 comments on commit 0acb76b

Please sign in to comment.