diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 18:31:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 18:31:44 +0000 |
commit | c23a457e72abe608715ac76f076f47dc42af07a5 (patch) | |
tree | 2772049aaf84b5c9d0ed12ec8d86812f7a7904b6 /src/tools/cargo/.github/workflows/main.yml | |
parent | Releasing progress-linux version 1.73.0+dfsg1-1~progress7.99u1. (diff) | |
download | rustc-c23a457e72abe608715ac76f076f47dc42af07a5.tar.xz rustc-c23a457e72abe608715ac76f076f47dc42af07a5.zip |
Merging upstream version 1.74.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/cargo/.github/workflows/main.yml')
-rw-r--r-- | src/tools/cargo/.github/workflows/main.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/tools/cargo/.github/workflows/main.yml b/src/tools/cargo/.github/workflows/main.yml index 2e71f14b8..44dd76e13 100644 --- a/src/tools/cargo/.github/workflows/main.yml +++ b/src/tools/cargo/.github/workflows/main.yml @@ -20,6 +20,7 @@ jobs: needs: - build_std - clippy + - credential_msrv - docs - lockfile - resolver @@ -37,6 +38,7 @@ jobs: needs: - build_std - clippy + - credential_msrv - docs - lockfile - resolver @@ -176,7 +178,7 @@ jobs: run: 'cargo test -p cargo --test testsuite -- fix::' env: __CARGO_TEST_FORCE_ARGFILE: 1 - - run: cargo test --workspace --exclude cargo --exclude benchsuite + - run: cargo test --workspace --exclude cargo --exclude benchsuite --exclude resolver-tests - name: Check benchmarks run: | # This only tests one benchmark since it can take over 10 minutes to @@ -246,3 +248,10 @@ jobs: cd target curl -sSLO https://raw.githubusercontent.com/rust-lang/rust/master/src/tools/linkchecker/linkcheck.sh sh linkcheck.sh --all --path ../src/doc cargo + + credential_msrv: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: rustup update 1.70 && rustup default 1.70 + - run: cargo test -p cargo-credential |