Auto merge of #123178 - Nilstrieb:🥷-build, r=Mark-Simulacrum
Update ninja on Windows Errors started showing up, and I read somewhere that this might be because of old ninja versions. This ninja version is indeed *ancient*. ``` multiple outputs aren't (yet?) supported by depslog; bring this up on the mailing list if it affects you ``` This requires someone uploading https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip as `2024-03-28-v1.11.1-ninja-win.zip`. should end https://github.com/rust-lang/rust/pull/122671#issuecomment-2026178791
This commit is contained in:
commit
d74804636f
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
|
||||||
|
|
||||||
if isWindows; then
|
if isWindows; then
|
||||||
mkdir ninja
|
mkdir ninja
|
||||||
curl -o ninja.zip "${MIRRORS_BASE}/2017-03-15-ninja-win.zip"
|
curl -o ninja.zip "${MIRRORS_BASE}/2024-03-28-v1.11.1-ninja-win.zip"
|
||||||
7z x -oninja ninja.zip
|
7z x -oninja ninja.zip
|
||||||
rm ninja.zip
|
rm ninja.zip
|
||||||
ciCommandSetEnv "RUST_CONFIGURE_ARGS" "${RUST_CONFIGURE_ARGS} --enable-ninja"
|
ciCommandSetEnv "RUST_CONFIGURE_ARGS" "${RUST_CONFIGURE_ARGS} --enable-ninja"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue