about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarcoIeni <11428655+MarcoIeni@users.noreply.github.com>2024-11-20 13:55:35 +0100
committerMarcoIeni <11428655+MarcoIeni@users.noreply.github.com>2024-11-20 13:55:35 +0100
commit91be81592f43dab084e24d3e317671274860e180 (patch)
treed21e907f4e50f1d48771fe1ca577aae585b6a844
parentfda68927475070696fcc9d1f5c9c990f0e1af87a (diff)
downloadrust-91be81592f43dab084e24d3e317671274860e180.tar.gz
rust-91be81592f43dab084e24d3e317671274860e180.zip
ci: Disable full `debuginfo-level=2` in windows alt job
-rwxr-xr-xsrc/ci/run.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/run.sh b/src/ci/run.sh
index 5690d8edea6..b874f71832d 100755
--- a/src/ci/run.sh
+++ b/src/ci/run.sh
@@ -116,7 +116,7 @@ if [ "$DEPLOY$DEPLOY_ALT" = "1" ]; then
   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"
   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.remap-debuginfo"
 
-  if [ "$DEPLOY_ALT" != "" ]; then
+  if [ "$DEPLOY_ALT" != "" ] && isLinux; then
     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --debuginfo-level=2"
   else
     RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --debuginfo-level-std=1"