From 06b0cd6ac8a7cfb9af8d6e4af0f16a14fd885634 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Tue, 30 Nov 2021 11:35:39 -0500 Subject: [PATCH] Add isl and expat libs as tarballs explicitly (#41138) (#42455) (cherry picked from commit 5e813ea454c2b49805126a613794bbb812988fb7) Co-authored-by: Dimitris Sotirakis --- scripts/build/ci-build/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/build/ci-build/Dockerfile b/scripts/build/ci-build/Dockerfile index af251f3e111..0585f146d6e 100644 --- a/scripts/build/ci-build/Dockerfile +++ b/scripts/build/ci-build/Dockerfile @@ -69,6 +69,11 @@ RUN cd /tmp/crosstool-ng-${CTNG} && \ echo 'CT_EXPERIMENTAL=y' >> .config && \ echo 'CT_ALLOW_BUILD_AS_ROOT=y' >> .config && \ echo 'CT_ALLOW_BUILD_AS_ROOT_SURE=y' >> .config && \ + mkdir -p .build/tarballs && \ + cd .build/tarballs && \ + curl -fLO https://libisl.sourceforge.io/isl-0.20.tar.gz && \ + curl -fLO https://github.com/libexpat/libexpat/releases/download/R_2_1_0/expat-2.1.0.tar.gz && \ + cd - && \ ./ct-ng build RUN cd /tmp && \ rm /tmp/x86_64-centos6-linux-gnu/build.log.bz2 && \