diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2025-03-20 13:43:21 +0100 |
|---|---|---|
| committer | Jakub Beránek <berykubik@gmail.com> | 2025-03-21 12:18:51 +0100 |
| commit | e288faa4b015676829f96f83dc5e124ee7c0b3e9 (patch) | |
| tree | c04cd5d4726c873e07f8c9f9ef04876afd350316 | |
| parent | f53acd17cb172c02bd8ec24aadd4475579ee0b3c (diff) | |
| download | rust-e288faa4b015676829f96f83dc5e124ee7c0b3e9.tar.gz rust-e288faa4b015676829f96f83dc5e124ee7c0b3e9.zip | |
Disable CI mode when checking default bootstrap profiles
| -rwxr-xr-x | src/ci/docker/host-x86_64/mingw-check/check-default-config-profiles.sh | 3 |
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 |
