This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git
The following commit(s) were added to refs/heads/master by this push:
new 6d2838a CI: Install apt-transport-https (#5053)
6d2838a is described below
commit 6d2838a43622d9355e680e5242ddb5ad3041693f
Author: Marcus Shawcroft <[email protected]>
AuthorDate: Thu Mar 12 17:13:22 2020 +0000
CI: Install apt-transport-https (#5053)
The ubuntu_install_llvm.sh script started failing because of a http to
https redirect. This patch adds the package that allows apt to handle
https transport.
Change-Id: I70bcba32a9fc75d02c54f4f21f288b2f46226689
---
docker/install/ubuntu_install_core.sh | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/docker/install/ubuntu_install_core.sh
b/docker/install/ubuntu_install_core.sh
index 8ca7a38..db72d9c 100755
--- a/docker/install/ubuntu_install_core.sh
+++ b/docker/install/ubuntu_install_core.sh
@@ -23,6 +23,8 @@ set -o pipefail
# install libraries for building c++ core on ubuntu
apt-get update && apt-get install -y --no-install-recommends \
git make libgtest-dev cmake wget unzip libtinfo-dev libz-dev\
- libcurl4-openssl-dev libopenblas-dev g++ sudo
+ libcurl4-openssl-dev libopenblas-dev g++ sudo \
+ apt-transport-https
+
cd /usr/src/gtest && cmake CMakeLists.txt && make && cp *.a /usr/lib