Skip to content

Commit

Permalink
Fix CI in v1.x branch (apache#18907)
Browse files Browse the repository at this point in the history
* Update mirror for getting binutils source.

* Remove erroneous wget command and duplicate mkdir command.

Co-authored-by: Joe Evans <joeev@amazon.com>
  • Loading branch information
josephevans and Joe Evans authored Aug 12, 2020
1 parent 1711103 commit 9fbf3d3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions ci/docker/install/ubuntu_binutils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,13 @@

set -ex

wget https://mirror.clarkson.edu/gnu/binutils/binutils-2.27.tar.gz

export DEBIAN_FRONTEND=noninteractive
apt-get update || true
apt-get install -y \
wget

mkdir /opt/binutils_install && mkdir /opt/binutils_install && mkdir /opt/binutils && cd /opt/binutils
wget -nv https://mirror.clarkson.edu/gnu/binutils/binutils-2.27.tar.gz
mkdir /opt/binutils_install && mkdir /opt/binutils && cd /opt/binutils
wget -nv https://ftp.gnu.org/gnu/binutils/binutils-2.27.tar.gz
tar -xvf binutils-2.27.tar.gz && cd binutils-2.27
./configure --prefix=/opt/binutils_other --exec-prefix=/opt/binutils_install
make -j$(nproc)
Expand Down

0 comments on commit 9fbf3d3

Please sign in to comment.