Skip to content

Commit a7b0bea

Browse files
committed
Attempt to fix *.yml confguration on Azure
Currently the `RUST_CONFIGURE_ARGS` variable apparently has a trailing newline at the end of it due to the way it's configured in yaml. This causes issues with MSVC's `install-clang.sh` step where the way the bash syntax works out means that we drop the arg we're trying to add and it doesn't actually get added! The hopeful fix here is to tweak how we specify the yaml syntax to not have a trailing newline, we'll see what CI says about this...
1 parent 1e4c2ae commit a7b0bea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ci/azure-pipelines/auto.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ jobs:
318318
# 32/64 bit MSVC and GNU deployment
319319
dist-x86_64-msvc:
320320
MSYS_BITS: 64
321-
RUST_CONFIGURE_ARGS: >
321+
RUST_CONFIGURE_ARGS: >-
322322
--build=x86_64-pc-windows-msvc
323323
--target=x86_64-pc-windows-msvc,aarch64-pc-windows-msvc
324324
--enable-full-tools
@@ -328,7 +328,7 @@ jobs:
328328
DEPLOY: 1
329329
dist-i686-msvc:
330330
MSYS_BITS: 32
331-
RUST_CONFIGURE_ARGS: >
331+
RUST_CONFIGURE_ARGS: >-
332332
--build=i686-pc-windows-msvc
333333
--target=i586-pc-windows-msvc
334334
--enable-full-tools

0 commit comments

Comments
 (0)