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"
9
9
10
10
if isLinux; then
11
11
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
13
14
sudo service docker restart
14
15
fi
Original file line number Diff line number Diff line change @@ -38,5 +38,6 @@ elif isWindows; then
38
38
mkdir -p citools
39
39
cd citools
40
40
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"
42
43
fi
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ IFS=$'\n\t'
11
11
source " $( cd " $( dirname " $0 " ) " && pwd) /../shared.sh"
12
12
13
13
if 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
15
16
is-install.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-
16
17
17
18
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
38
38
if [ " $MSYS_BITS " = " 64" ]; then
39
39
arch=x86_64
40
40
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
42
43
ciCommandAddPath " ${SYSTEM_WORKFOLDER} /msys2/mingw${MSYS_BITS} /bin"
43
44
fi
44
45
fi
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
8
8
9
9
if isWindows; then
10
10
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
12
13
7z x -oninja ninja.zip
13
14
rm ninja.zip
14
15
ciCommandSetEnv " RUST_CONFIGURE_ARGS" " ${RUST_CONFIGURE_ARGS} --enable-ninja"
You can’t perform that action at this time.
0 commit comments