about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2025-03-20 13:43:21 +0100
committerJakub Beránek <berykubik@gmail.com>2025-03-21 12:18:51 +0100
commite288faa4b015676829f96f83dc5e124ee7c0b3e9 (patch)
treec04cd5d4726c873e07f8c9f9ef04876afd350316
parentf53acd17cb172c02bd8ec24aadd4475579ee0b3c (diff)
downloadrust-e288faa4b015676829f96f83dc5e124ee7c0b3e9.tar.gz
rust-e288faa4b015676829f96f83dc5e124ee7c0b3e9.zip
Disable CI mode when checking default bootstrap profiles
-rwxr-xr-xsrc/ci/docker/host-x86_64/mingw-check/check-default-config-profiles.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ci/docker/host-x86_64/mingw-check/check-default-config-profiles.sh b/src/ci/docker/host-x86_64/mingw-check/check-default-config-profiles.sh
index d706927d6d9..0c85d4b449d 100755
--- a/src/ci/docker/host-x86_64/mingw-check/check-default-config-profiles.sh
+++ b/src/ci/docker/host-x86_64/mingw-check/check-default-config-profiles.sh
@@ -8,5 +8,6 @@ config_dir="../src/bootstrap/defaults"
 # Loop through each configuration file in the directory
 for config_file in "$config_dir"/*.toml;
 do
-    python3 ../x.py check --config $config_file --dry-run
+    # Disable CI mode, because it is not compatible with all profiles
+    python3 ../x.py check --config $config_file --dry-run --ci=false
 done