Skip to content

Commit e013378

Browse files
committed
suppress change-tracker warnings in containers
Signed-off-by: onur-ozkan <work@onurozkan.dev>
1 parent a815c3b commit e013378

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/ci/run.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ source "$ci_dir/shared.sh"
4747

4848
export CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
4949

50+
# suppress change-tracker warnings on CI
51+
if [ "$CI" != "" ]; then
52+
echo "debug: setting change-id"
53+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set change-id=99999999"
54+
fi
55+
5056
if ! isCI || isCiBranch auto || isCiBranch beta || isCiBranch try || isCiBranch try-perf || \
5157
isCiBranch automation/bors/try; then
5258
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
@@ -241,7 +247,7 @@ fi
241247

242248
if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
243249
rm -f config.toml
244-
$SRC/configure --set rust.parallel-compiler
250+
$SRC/configure --set change-id=99999999 --set rust.parallel-compiler
245251

246252
# Save the build metrics before we wipe the directory
247253
if [ "$HAS_METRICS" = 1 ]; then

0 commit comments

Comments
 (0)