Skip to content

Commit

Permalink
Add submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
quentinlesceller committed May 16, 2019
1 parent 63e382c commit fc0ca7b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .ci/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ steps:
curl -sSf -o rustup-init.exe https://win.rustup.rs
rustup-init.exe -y
echo "##vso[task.setvariable variable=PATH;]%PATH%;%USERPROFILE%\.cargo\bin"
git submodule update --init --recursive
displayName: Windows Install Rust and Dependencies
condition: eq( variables['Agent.OS'], 'Windows_NT' )
- script: |
curl https://sh.rustup.rs -sSf | sh -s -- -y
echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
brew tap caskroom/drivers
brew cask install nvidia-cuda
git submodule update --init --recursive
displayName: macOS Install Rust and Dependencies
condition: eq( variables['Agent.OS'], 'Darwin' )
- script: |
Expand All @@ -20,5 +22,6 @@ steps:
sudo apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/7fa2af80.pub
sudo apt-get update -yqq
sudo apt-get install cuda
git submodule update --init --recursive
displayName: Linux Install Rust and Dependencies
condition: eq( variables['Agent.OS'], 'Linux' )

0 comments on commit fc0ca7b

Please sign in to comment.