You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ma...@apache.org on 2019/01/11 00:10:22 UTC

[incubator-mxnet] branch master updated: Removes unneeded nvidia driver ppa installation (#13814)

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

marcoabreu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new 27846dd  Removes unneeded nvidia driver ppa installation (#13814)
27846dd is described below

commit 27846dd368212a9d17c7cc5a5db5a6657ee09f6f
Author: perdasilva <pe...@gmail.com>
AuthorDate: Fri Jan 11 01:10:07 2019 +0100

    Removes unneeded nvidia driver ppa installation (#13814)
---
 ci/docker/install/ubuntu_nvidia.sh | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/ci/docker/install/ubuntu_nvidia.sh b/ci/docker/install/ubuntu_nvidia.sh
index 3d8de9d..7012b89 100755
--- a/ci/docker/install/ubuntu_nvidia.sh
+++ b/ci/docker/install/ubuntu_nvidia.sh
@@ -18,11 +18,6 @@
 # under the License.
 
 set -ex
-apt-get update || true
-apt install -y software-properties-common
-
-# Adding ppas frequently fails due to busy gpg servers, retry 5 times with 5 minute delays.
-for i in 1 2 3 4 5; do add-apt-repository -y ppa:graphics-drivers && break || sleep 300; done
 
 # Retrieve ppa:graphics-drivers and install nvidia-drivers.
 # Note: DEBIAN_FRONTEND required to skip the interactive setup steps