Skip to content

Commit

Permalink
ci: downgrade hashbrown for 1.63
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Nov 13, 2024
1 parent 7d8cef8 commit c095322
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- name: Downgrade dependencies
if: matrix.rust == '1.63.0'
run: |
cargo generate-lockfile
cargo update -p hashbrown --precise 0.15.0
- name: Tests
run: |
cargo build --verbose --features "${{ matrix.features }}"
Expand Down Expand Up @@ -83,6 +88,11 @@ jobs:
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
- name: Downgrade dependencies
if: matrix.rust == '1.63.0'
run: |
cargo generate-lockfile
cargo update -p hashbrown --precise 0.15.0
- name: Tests
run: |
cargo build -vv --target=${{ matrix.target }} --no-default-features
Expand Down

0 comments on commit c095322

Please sign in to comment.