Auto merge of #12795 - weihanglo:semver-checks, r=ehuss

ci: bump cargo-semver-checks to 0.24.0
This commit is contained in:
bors 2023-10-08 21:15:54 +00:00
commit 0871c0e2f4
2 changed files with 3 additions and 17 deletions

View File

@ -98,7 +98,7 @@ jobs:
- name: Install cargo-semver-checks
run: |
mkdir installed-bins
curl -Lf https://github.com/obi1kenobi/cargo-semver-checks/releases/download/v0.22.1/cargo-semver-checks-x86_64-unknown-linux-gnu.tar.gz \
curl -Lf https://github.com/obi1kenobi/cargo-semver-checks/releases/download/v0.24.0/cargo-semver-checks-x86_64-unknown-linux-gnu.tar.gz \
| tar -xz --directory=./installed-bins
echo `pwd`/installed-bins >> $GITHUB_PATH
- run: ci/validate-version-bump.sh

View File

@ -148,26 +148,13 @@ fn bump_check(args: &clap::ArgMatches, config: &cargo::util::Config) -> CargoRes
anyhow::bail!(msg)
}
// Tracked by https://github.com/obi1kenobi/cargo-semver-checks/issues/511
let exclude_args = [
"--exclude",
"cargo-credential-1password",
"--exclude",
"cargo-credential-libsecret",
"--exclude",
"cargo-credential-macos-keychain",
"--exclude",
"cargo-credential-wincred",
];
// Even when we test against baseline-rev, we still need to make sure a
// change doesn't violate SemVer rules against crates.io releases. The
// possibility of this happening is nearly zero but no harm to check twice.
let mut cmd = ProcessBuilder::new("cargo");
cmd.arg("semver-checks")
.arg("check-release")
.arg("--workspace")
.args(&exclude_args);
.arg("--workspace");
config.shell().status("Running", &cmd)?;
cmd.exec()?;
@ -176,8 +163,7 @@ fn bump_check(args: &clap::ArgMatches, config: &cargo::util::Config) -> CargoRes
cmd.arg("semver-checks")
.arg("--workspace")
.arg("--baseline-rev")
.arg(referenced_commit.id().to_string())
.args(&exclude_args);
.arg(referenced_commit.id().to_string());
config.shell().status("Running", &cmd)?;
cmd.exec()?;
}