Skip to content

Commit

Permalink
use new resolver in CI (extrawurst#649)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan Dilly authored Apr 19, 2021
1 parent d53377a commit 0344199
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
profile: minimal
components: clippy

- name: New Resolver
if: matrix.rust != '1.50'
run: |
cargo install cargo-modify
cargo modify new-resolver
- name: Build
run: cargo build
- name: Run tests
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ jobs:
profile: minimal
components: clippy

- name: New Resolver
if: matrix.rust != '1.50'
run: |
cargo install cargo-modify
cargo modify new-resolver
- name: Build Debug
run: |
cargo build
Expand Down Expand Up @@ -92,6 +98,14 @@ jobs:
profile: minimal
default: true
target: x86_64-unknown-linux-musl

# TODO: remove once we depend on 1.51 as a msrv and resolver is supported by default
- name: New Resolver
if: matrix.rust != '1.50'
run: |
cargo install cargo-modify
cargo modify new-resolver
- name: Setup MUSL
run: |
sudo apt-get -qq install musl-tools
Expand Down

0 comments on commit 0344199

Please sign in to comment.