File tree Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
99
1010if isLinux; then
1111 sudo mkdir -p /etc/docker
12- echo ' {"ipv6":true,"fixed-cidr-v6":"fd9a:8454:6789:13f7::/64"}' | sudo tee /etc/docker/daemon.json
12+ echo ' {"ipv6":true,"fixed-cidr-v6":"fd9a:8454:6789:13f7::/64"}' \
13+ | sudo tee /etc/docker/daemon.json
1314 sudo service docker restart
1415fi
Original file line number Diff line number Diff line change @@ -38,5 +38,6 @@ elif isWindows; then
3838 mkdir -p citools
3939 cd citools
4040 curl -f " ${MIRRORS_BASE} /LLVM-7.0.0-win64.tar.gz" | tar xzf -
41- ciCommandSetEnv RUST_CONFIGURE_ARGS " ${RUST_CONFIGURE_ARGS} --set llvm.clang-cl=$( pwd) /clang-rust/bin/clang-cl.exe"
41+ ciCommandSetEnv RUST_CONFIGURE_ARGS \
42+ " ${RUST_CONFIGURE_ARGS} --set llvm.clang-cl=$( pwd) /clang-rust/bin/clang-cl.exe"
4243fi
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ IFS=$'\n\t'
1111source " $( cd " $( dirname " $0 " ) " && pwd) /../shared.sh"
1212
1313if isWindows; then
14- curl.exe -o is-install.exe https://rust-lang-ci-mirrors.s3-us-west-1.amazonaws.com/rustc/2017-08-22-is.exe
14+ curl.exe -o is-install.exe \
15+ https://rust-lang-ci-mirrors.s3-us-west-1.amazonaws.com/rustc/2017-08-22-is.exe
1516 is-install.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-
1617
1718 ciCommandAddPath " C:\\ Program Files (x86)\\ Inno Setup 5"
Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ if isWindows; then
3838 if [ " $MSYS_BITS " = " 64" ]; then
3939 arch=x86_64
4040 fi
41- pacman -S --noconfirm --needed mingw-w64-$arch -toolchain mingw-w64-$arch -cmake mingw-w64-$arch -gcc mingw-w64-$arch -python2
41+ pacman -S --noconfirm --needed mingw-w64-$arch -toolchain mingw-w64-$arch -cmake \
42+ mingw-w64-$arch -gcc mingw-w64-$arch -python2
4243 ciCommandAddPath " ${SYSTEM_WORKFOLDER} /msys2/mingw${MSYS_BITS} /bin"
4344 fi
4445fi
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
88
99if isWindows; then
1010 mkdir ninja
11- curl -o ninja.zip https://rust-lang-ci-mirrors.s3-us-west-1.amazonaws.com/rustc/2017-03-15-ninja-win.zip
11+ curl -o ninja.zip \
12+ https://rust-lang-ci-mirrors.s3-us-west-1.amazonaws.com/rustc/2017-03-15-ninja-win.zip
1213 7z x -oninja ninja.zip
1314 rm ninja.zip
1415 ciCommandSetEnv " RUST_CONFIGURE_ARGS" " ${RUST_CONFIGURE_ARGS} --enable-ninja"
You can’t perform that action at this time.
0 commit comments