You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by zh...@apache.org on 2020/10/08 15:47:56 UTC

[incubator-tvm] branch master updated: [CI] make sure graphviz is on both ci-cpu and ci-gpu images (#6645)

This is an automated email from the ASF dual-hosted git repository.

zhic 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 a8c1273  [CI] make sure graphviz is on both ci-cpu and ci-gpu images (#6645)
a8c1273 is described below

commit a8c1273ea4382f68b7c930d012dfd283f2b50fcc
Author: Leandro Nunes <le...@gmail.com>
AuthorDate: Thu Oct 8 16:47:43 2020 +0100

    [CI] make sure graphviz is on both ci-cpu and ci-gpu images (#6645)
---
 docker/Dockerfile.ci_gpu              | 2 +-
 docker/install/ubuntu_install_core.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docker/Dockerfile.ci_gpu b/docker/Dockerfile.ci_gpu
index 7b8468e..1197d8e 100644
--- a/docker/Dockerfile.ci_gpu
+++ b/docker/Dockerfile.ci_gpu
@@ -41,7 +41,7 @@ COPY install/ubuntu_install_sphinx.sh /install/ubuntu_install_sphinx.sh
 RUN bash /install/ubuntu_install_sphinx.sh
 
 # Enable doxygen for c++ doc build
-RUN apt-get update && apt-get install -y doxygen graphviz libprotobuf-dev protobuf-compiler
+RUN apt-get update && apt-get install -y doxygen libprotobuf-dev protobuf-compiler
 
 COPY install/ubuntu_install_java.sh /install/ubuntu_install_java.sh
 RUN bash /install/ubuntu_install_java.sh
diff --git a/docker/install/ubuntu_install_core.sh b/docker/install/ubuntu_install_core.sh
index db72d9c..bb40b05 100755
--- a/docker/install/ubuntu_install_core.sh
+++ b/docker/install/ubuntu_install_core.sh
@@ -24,7 +24,7 @@ set -o pipefail
 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 \
-        apt-transport-https
+        apt-transport-https graphviz
 
 
 cd /usr/src/gtest && cmake CMakeLists.txt && make && cp *.a /usr/lib