mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 00:48:35 +00:00
use new resolver in CI (#649)
This commit is contained in:
parent
d53377aabb
commit
03441995b2
2 changed files with 20 additions and 0 deletions
6
.github/workflows/cd.yml
vendored
6
.github/workflows/cd.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue