Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: downgrade crates when building for Rust 1.67.0 #1003

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,18 @@ jobs:
toolchain: ${{ matrix.rust }}
# Add toolchain for no_std tests
- run: rustup toolchain install nightly
- name: Downgrade idna_adapter on Rust 1.63.0
- name: Downgrade deps on Rust 1.63.0
if: |
matrix.rust == '1.63.0'
run: cargo update -p idna_adapter --precise 1.1.0
run: |
cargo update -p idna_adapter --precise 1.1.0
- name: Downgrade deps on Rust 1.67.0
if: |
matrix.rust == '1.67.0'
run: |
cargo update -p zerofrom --precise 0.1.4
cargo update -p yoke --precise 0.7.4
cargo update -p litemap --precise 0.7.3
- name: Add `aarch64-unknown-none` toolchain for `no_std` tests
if: |
matrix.os == 'ubuntu-latest' &&
Expand Down
Loading