Skip to content

Commit

Permalink
Cleanup (#246)
Browse files Browse the repository at this point in the history
* 2020 Update

* 2020 Update

* Update AP

* Update cuda dependency

* Remove unused dependency log

* Fix typos in ci
  • Loading branch information
quentinlesceller committed Apr 29, 2020
1 parent 12f4519 commit 038c77d
Show file tree
Hide file tree
Showing 53 changed files with 810 additions and 1,912 deletions.
16 changes: 6 additions & 10 deletions .ci/install.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
steps:
- script: |
curl https://sh.rustup.rs -sSf | sh -s -- -y
echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
git submodule update --init --recursive
displayName: macOS Install Rust and Dependencies
condition: eq( variables['Agent.OS'], 'Darwin' )
- script: |
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_10.1.168-1_amd64.deb
sudo dpkg -i cuda-repo-ubuntu1604_10.1.168-1_amd64.deb
sudo apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/7fa2af80.pub
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-repo-ubuntu1804_10.1.168-1_amd64.deb
sudo dpkg -i cuda-repo-ubuntu1804_10.1.168-1_amd64.deb
sudo apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub
sudo apt-get update -yqq
sudo apt-get install cuda ocl-icd-opencl-dev libncursesw5-dev
git submodule update --init --recursive
displayName: Linux Install Dependencies
condition: eq( variables['Agent.OS'], 'Linux' )
- script: |
git submodule update --init --recursive
displayName: Init Dependencies

0 comments on commit 038c77d

Please sign in to comment.