-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 2020 Update * 2020 Update * Update AP * Update cuda dependency * Remove unused dependency log * Fix typos in ci
- Loading branch information
1 parent
12f4519
commit 038c77d
Showing
53 changed files
with
810 additions
and
1,912 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.