Skip to content
Snippets Groups Projects
Commit b46b6e2e authored by Tom Parker-Shemilt's avatar Tom Parker-Shemilt
Browse files

Retry all curl operations

parent 530f31f6
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
set -ex set -ex
curl -O https://dl.google.com/android/repository/android-ndk-r15b-linux-x86_64.zip curl --retry 5 -O https://dl.google.com/android/repository/android-ndk-r15b-linux-x86_64.zip
unzip -q android-ndk-r15b-linux-x86_64.zip unzip -q android-ndk-r15b-linux-x86_64.zip
case "$1" in case "$1" in
......
...@@ -19,7 +19,7 @@ set -ex ...@@ -19,7 +19,7 @@ set -ex
# which apparently magically accepts the licenses. # which apparently magically accepts the licenses.
mkdir sdk mkdir sdk
curl https://dl.google.com/android/repository/sdk-tools-linux-3859397.zip -O curl --retry 5 https://dl.google.com/android/repository/sdk-tools-linux-3859397.zip -O
unzip -d sdk sdk-tools-linux-3859397.zip unzip -d sdk sdk-tools-linux-3859397.zip
case "$1" in case "$1" in
......
...@@ -24,7 +24,7 @@ main() { ...@@ -24,7 +24,7 @@ main() {
apt-get install --no-install-recommends e2tools apt-get install --no-install-recommends e2tools
pushd "${td}" pushd "${td}"
curl -O "${URL}/${name}" curl --retry 5 -O "${URL}/${name}"
unzip -q "${name}" unzip -q "${name}"
local system local system
......
...@@ -3,7 +3,7 @@ FROM ubuntu:17.10 ...@@ -3,7 +3,7 @@ FROM ubuntu:17.10
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
gcc make libc6-dev git curl ca-certificates \ gcc make libc6-dev git curl ca-certificates \
gcc-aarch64-linux-gnu qemu-user gcc-aarch64-linux-gnu qemu-user
RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \ RUN curl --retry 5 https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \
tar xzf - && \ tar xzf - && \
cd musl-1.1.19 && \ cd musl-1.1.19 && \
CC=aarch64-linux-gnu-gcc \ CC=aarch64-linux-gnu-gcc \
...@@ -12,7 +12,7 @@ RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \ ...@@ -12,7 +12,7 @@ RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \
cd .. && \ cd .. && \
rm -rf musl-1.1.19 rm -rf musl-1.1.19
# Install linux kernel headers sanitized for use with musl # Install linux kernel headers sanitized for use with musl
RUN curl -L https://github.com/sabotage-linux/kernel-headers/archive/v3.12.6-6.tar.gz | \ RUN curl --retry 5 -L https://github.com/sabotage-linux/kernel-headers/archive/v3.12.6-6.tar.gz | \
tar xzf - && \ tar xzf - && \
cd kernel-headers-3.12.6-6 && \ cd kernel-headers-3.12.6-6 && \
make ARCH=arm64 prefix=/musl-aarch64 install -j4 && \ make ARCH=arm64 prefix=/musl-aarch64 install -j4 && \
......
...@@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ ...@@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
gcc make libc6-dev git curl ca-certificates \ gcc make libc6-dev git curl ca-certificates \
gcc-arm-linux-gnueabihf qemu-user gcc-arm-linux-gnueabihf qemu-user
RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | tar xzf - RUN curl --retry 5 https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | tar xzf -
WORKDIR /musl-1.1.19 WORKDIR /musl-1.1.19
RUN CC=arm-linux-gnueabihf-gcc \ RUN CC=arm-linux-gnueabihf-gcc \
CFLAGS="-march=armv6 -marm" \ CFLAGS="-march=armv6 -marm" \
...@@ -12,7 +12,7 @@ RUN CC=arm-linux-gnueabihf-gcc \ ...@@ -12,7 +12,7 @@ RUN CC=arm-linux-gnueabihf-gcc \
RUN make install -j4 RUN make install -j4
# Install linux kernel headers sanitized for use with musl # Install linux kernel headers sanitized for use with musl
RUN curl -L https://github.com/sabotage-linux/kernel-headers/archive/v3.12.6-6.tar.gz | \ RUN curl --retry 5 -L https://github.com/sabotage-linux/kernel-headers/archive/v3.12.6-6.tar.gz | \
tar xzf - && \ tar xzf - && \
cd kernel-headers-3.12.6-6 && \ cd kernel-headers-3.12.6-6 && \
make ARCH=arm prefix=/musl-arm install -j4 && \ make ARCH=arm prefix=/musl-arm install -j4 && \
......
...@@ -12,7 +12,7 @@ RUN apt-get install -y --no-install-recommends \ ...@@ -12,7 +12,7 @@ RUN apt-get install -y --no-install-recommends \
# since otherwise the script will fail to find a compiler. # since otherwise the script will fail to find a compiler.
# * We manually unset CROSS_COMPILE when running make; otherwise the makefile # * We manually unset CROSS_COMPILE when running make; otherwise the makefile
# will call the non-existent binary 'i686-ar'. # will call the non-existent binary 'i686-ar'.
RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \ RUN curl --retry 5 https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \
tar xzf - && \ tar xzf - && \
cd musl-1.1.19 && \ cd musl-1.1.19 && \
CC=gcc CFLAGS=-m32 ./configure --prefix=/musl-i686 --disable-shared --target=i686 && \ CC=gcc CFLAGS=-m32 ./configure --prefix=/musl-i686 --disable-shared --target=i686 && \
...@@ -20,7 +20,7 @@ RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \ ...@@ -20,7 +20,7 @@ RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \
cd .. && \ cd .. && \
rm -rf musl-1.1.19 rm -rf musl-1.1.19
# Install linux kernel headers sanitized for use with musl # Install linux kernel headers sanitized for use with musl
RUN curl -L https://github.com/sabotage-linux/kernel-headers/archive/v3.12.6-6.tar.gz | \ RUN curl --retry 5 -L https://github.com/sabotage-linux/kernel-headers/archive/v3.12.6-6.tar.gz | \
tar xzf - && \ tar xzf - && \
cd kernel-headers-3.12.6-6 && \ cd kernel-headers-3.12.6-6 && \
make ARCH=i386 prefix=/musl-i686 install -j4 && \ make ARCH=i386 prefix=/musl-i686 install -j4 && \
......
...@@ -8,7 +8,7 @@ RUN mkdir /toolchain ...@@ -8,7 +8,7 @@ RUN mkdir /toolchain
# Note that this originally came from: # Note that this originally came from:
# https://downloads.openwrt.org/snapshots/trunk/ar71xx/generic/OpenWrt-SDK-ar71xx-generic_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2 # https://downloads.openwrt.org/snapshots/trunk/ar71xx/generic/OpenWrt-SDK-ar71xx-generic_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2
RUN curl -L https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/OpenWrt-SDK-ar71xx-generic_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2 | \ RUN curl --retry 5 -L https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/OpenWrt-SDK-ar71xx-generic_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2 | \
tar xjf - -C /toolchain --strip-components=1 tar xjf - -C /toolchain --strip-components=1
ENV PATH=$PATH:/rust/bin:/toolchain/staging_dir/toolchain-mips_34kc_gcc-5.3.0_musl-1.1.15/bin \ ENV PATH=$PATH:/rust/bin:/toolchain/staging_dir/toolchain-mips_34kc_gcc-5.3.0_musl-1.1.15/bin \
......
...@@ -8,7 +8,7 @@ RUN mkdir /toolchain ...@@ -8,7 +8,7 @@ RUN mkdir /toolchain
# Note that this originally came from: # Note that this originally came from:
# https://downloads.openwrt.org/snapshots/trunk/malta/generic/OpenWrt-Toolchain-malta-le_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2 # https://downloads.openwrt.org/snapshots/trunk/malta/generic/OpenWrt-Toolchain-malta-le_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2
RUN curl -L https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/OpenWrt-Toolchain-malta-le_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2 | \ RUN curl --retry 5 -L https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/OpenWrt-Toolchain-malta-le_gcc-5.3.0_musl-1.1.15.Linux-x86_64.tar.bz2 | \
tar xjf - -C /toolchain --strip-components=2 tar xjf - -C /toolchain --strip-components=2
ENV PATH=$PATH:/rust/bin:/toolchain/bin \ ENV PATH=$PATH:/rust/bin:/toolchain/bin \
......
...@@ -3,7 +3,7 @@ FROM ubuntu:17.10 ...@@ -3,7 +3,7 @@ FROM ubuntu:17.10
RUN apt-get update RUN apt-get update
RUN apt-get install -y --no-install-recommends \ RUN apt-get install -y --no-install-recommends \
gcc make libc6-dev git curl ca-certificates gcc make libc6-dev git curl ca-certificates
RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \ RUN curl --retry 5 https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \
tar xzf - && \ tar xzf - && \
cd musl-1.1.19 && \ cd musl-1.1.19 && \
./configure --prefix=/musl-x86_64 && \ ./configure --prefix=/musl-x86_64 && \
...@@ -11,7 +11,7 @@ RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \ ...@@ -11,7 +11,7 @@ RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \
cd .. && \ cd .. && \
rm -rf musl-1.1.19 rm -rf musl-1.1.19
# Install linux kernel headers sanitized for use with musl # Install linux kernel headers sanitized for use with musl
RUN curl -L https://github.com/sabotage-linux/kernel-headers/archive/v3.12.6-6.tar.gz | \ RUN curl --retry 5 -L https://github.com/sabotage-linux/kernel-headers/archive/v3.12.6-6.tar.gz | \
tar xzf - && \ tar xzf - && \
cd kernel-headers-3.12.6-6 && \ cd kernel-headers-3.12.6-6 && \
make ARCH=x86_64 prefix=/musl-x86_64 install -j4 && \ make ARCH=x86_64 prefix=/musl-x86_64 install -j4 && \
......
...@@ -29,7 +29,7 @@ exit 1 ...@@ -29,7 +29,7 @@ exit 1
} }
cd / cd /
curl -L https://s3.amazonaws.com/mozilla-games/emscripten/releases/emsdk-portable.tar.gz | \ curl --retry 5 -L https://s3.amazonaws.com/mozilla-games/emscripten/releases/emsdk-portable.tar.gz | \
tar -xz tar -xz
cd /emsdk-portable cd /emsdk-portable
...@@ -51,6 +51,6 @@ chmod a+rxw -R /emsdk-portable ...@@ -51,6 +51,6 @@ chmod a+rxw -R /emsdk-portable
# node 8 is required to run wasm # node 8 is required to run wasm
cd / cd /
curl -L https://nodejs.org/dist/v8.0.0/node-v8.0.0-linux-x64.tar.xz | \ curl --retry 5 -L https://nodejs.org/dist/v8.0.0/node-v8.0.0-linux-x64.tar.xz | \
tar -xJ tar -xJ
...@@ -5,9 +5,9 @@ set -ex ...@@ -5,9 +5,9 @@ set -ex
mkdir -m 777 /qemu mkdir -m 777 /qemu
cd /qemu cd /qemu
curl -LO https://github.com/qemu/qemu/raw/master/pc-bios/s390-ccw.img curl --retry 5 -LO https://github.com/qemu/qemu/raw/master/pc-bios/s390-ccw.img
curl -LO http://ftp.debian.org/debian/dists/testing/main/installer-s390x/20170828/images/generic/kernel.debian curl --retry 5 -LO http://ftp.debian.org/debian/dists/testing/main/installer-s390x/20170828/images/generic/kernel.debian
curl -LO http://ftp.debian.org/debian/dists/testing/main/installer-s390x/20170828/images/generic/initrd.debian curl --retry 5 -LO http://ftp.debian.org/debian/dists/testing/main/installer-s390x/20170828/images/generic/initrd.debian
mv kernel.debian kernel mv kernel.debian kernel
mv initrd.debian initrd.gz mv initrd.debian initrd.gz
......
...@@ -5,7 +5,7 @@ set -ex ...@@ -5,7 +5,7 @@ set -ex
mkdir -m 777 /qemu mkdir -m 777 /qemu
cd /qemu cd /qemu
curl -LO https://cdimage.debian.org/cdimage/ports/9.0/sparc64/iso-cd/debian-9.0-sparc64-NETINST-1.iso curl --retry 5 -LO https://cdimage.debian.org/cdimage/ports/9.0/sparc64/iso-cd/debian-9.0-sparc64-NETINST-1.iso
7z e debian-9.0-sparc64-NETINST-1.iso boot/initrd.gz 7z e debian-9.0-sparc64-NETINST-1.iso boot/initrd.gz
7z e debian-9.0-sparc64-NETINST-1.iso boot/sparc64 7z e debian-9.0-sparc64-NETINST-1.iso boot/sparc64
mv sparc64 kernel mv sparc64 kernel
......
...@@ -21,21 +21,21 @@ if [ "$QEMU" != "" ]; then ...@@ -21,21 +21,21 @@ if [ "$QEMU" != "" ]; then
# image is .gz : download and uncompress it # image is .gz : download and uncompress it
qemufile="$(echo "${QEMU%.gz}" | sed 's/\//__/g')" qemufile="$(echo "${QEMU%.gz}" | sed 's/\//__/g')"
if [ ! -f "${tmpdir}/${qemufile}" ]; then if [ ! -f "${tmpdir}/${qemufile}" ]; then
curl "https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/${QEMU}" | \ curl --retry 5 "https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/${QEMU}" | \
gunzip -d > "${tmpdir}/${qemufile}" gunzip -d > "${tmpdir}/${qemufile}"
fi fi
elif [ -z "${QEMU#*.xz}" ]; then elif [ -z "${QEMU#*.xz}" ]; then
# image is .xz : download and uncompress it # image is .xz : download and uncompress it
qemufile="$(echo "${QEMU%.xz}" | sed 's/\//__/g')" qemufile="$(echo "${QEMU%.xz}" | sed 's/\//__/g')"
if [ ! -f "${tmpdir}/${qemufile}" ]; then if [ ! -f "${tmpdir}/${qemufile}" ]; then
curl "https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/${QEMU}" | \ curl --retry 5 "https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/${QEMU}" | \
unxz > "${tmpdir}/${qemufile}" unxz > "${tmpdir}/${qemufile}"
fi fi
else else
# plain qcow2 image: just download it # plain qcow2 image: just download it
qemufile="$(echo "${QEMU}" | sed 's/\//__/g')" qemufile="$(echo "${QEMU}" | sed 's/\//__/g')"
if [ ! -f "${tmpdir}/${qemufile}" ]; then if [ ! -f "${tmpdir}/${qemufile}" ]; then
curl "https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/${QEMU}" \ curl --retry 5 "https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/${QEMU}" \
> "${tmpdir}/${qemufile}" > "${tmpdir}/${qemufile}"
fi fi
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment