Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Merge pull request ethereum-mining#1493 from ethereum-mining/cuda-dow…
Browse files Browse the repository at this point in the history
…ngrade

CI: Downgrade CUDA SDK to 9.1
  • Loading branch information
jean-m-cyr authored Aug 23, 2018
2 parents 540e11d + 27c6324 commit 0fd6889
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ before_install: |
if [ "$TRAVIS_OS_NAME" = linux ]; then
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get -q update
sudo apt-get -qy install g++-7
sudo apt-get -qy install g++-6
scripts/install_cmake.sh
. scripts/install-cuda-ubuntu1604.sh
pyenv global 3.6
pip install --user requests gitpython
export CC=gcc-7
export CXX=g++-7
export CC=gcc-6
export CXX=g++-6
elif [ "$TRAVIS_OS_NAME" == "osx" ]; then
HOMEBREW_NO_AUTO_UPDATE=1 brew install -q python3
pip3 install -q requests gitpython
Expand Down
2 changes: 1 addition & 1 deletion scripts/install-cuda-ubuntu1604.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

set -e

export CUDA_VER=9.2.148-1
export CUDA_VER=9.1.85-1
sudo apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/7fa2af80.pub
wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_${CUDA_VER}_amd64.deb
sudo dpkg -i cuda-repo-ubuntu1604_${CUDA_VER}_amd64.deb
Expand Down

0 comments on commit 0fd6889

Please sign in to comment.