From 5e813ea454c2b49805126a613794bbb812988fb7 Mon Sep 17 00:00:00 2001 From: Dimitris Sotirakis Date: Mon, 1 Nov 2021 15:12:16 +0200 Subject: [PATCH] Add isl and expat libs as tarballs explicitly (#41138) --- 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 f2058965a22..cdf4fbcf0e9 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 && \