Skip to content

Commit 6f581e9

Browse files
committed
Chore(xtask-bump-check): Exclude cargo-test-* to make corresponding CI check pass
Signed-off-by: Paul Mabileau <[email protected]>
1 parent 8be4cc3 commit 6f581e9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

crates/xtask-bump-check/src/xtask.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,8 @@ fn bump_check(args: &clap::ArgMatches, gctx: &cargo::util::GlobalContext) -> Car
168168
let mut cmd = ProcessBuilder::new("cargo");
169169
cmd.arg("semver-checks")
170170
.arg("check-release")
171+
.args(&["--exclude", "cargo-test-macro"]) // FIXME: Remove once 1.79 is stable.
172+
.args(&["--exclude", "cargo-test-support"]) // FIXME: Remove once 1.79 is stable.
171173
.arg("--workspace");
172174
gctx.shell().status("Running", &cmd)?;
173175
cmd.exec()?;
@@ -176,6 +178,8 @@ fn bump_check(args: &clap::ArgMatches, gctx: &cargo::util::GlobalContext) -> Car
176178
let mut cmd = ProcessBuilder::new("cargo");
177179
cmd.arg("semver-checks")
178180
.arg("--workspace")
181+
.args(&["--exclude", "cargo-test-macro"]) // FIXME: Remove once 1.79 is stable.
182+
.args(&["--exclude", "cargo-test-support"]) // FIXME: Remove once 1.79 is stable.
179183
.arg("--baseline-rev")
180184
.arg(referenced_commit.id().to_string());
181185
for krate in crates_not_check_against_channels {

0 commit comments

Comments
 (0)