Browse Source
Merge pull request #404 from spl/ubuntu-toolchain
Remove ppa:ubuntu-toolchain-r/test from Azure Pipelines
urgh
Alex Crichton
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
7 additions and
0 deletions
-
ci/azure-steps.yml
|
|
@ -3,6 +3,13 @@ steps: |
|
|
|
- bash: rustup target add $TARGET |
|
|
|
displayName: Install Rust target |
|
|
|
|
|
|
|
# Remove the ubuntu-toolchain-r/test PPA, which is added by default. Some |
|
|
|
# packages were removed, and this is causing the g++multilib install to fail. |
|
|
|
# Similar issue: https://github.com/scikit-learn/scikit-learn/issues/13928 |
|
|
|
- bash: sudo add-apt-repository --remove ppa:ubuntu-toolchain-r/test |
|
|
|
condition: eq( variables['Agent.OS'], 'Linux' ) |
|
|
|
displayName: Remove ppa:ubuntu-toolchain-r/test |
|
|
|
|
|
|
|
- bash: sudo apt-get install g++-multilib |
|
|
|
condition: eq( variables['Agent.OS'], 'Linux' ) |
|
|
|
displayName: Install g++-multilib |
|
|
|