Skip to content

Commit f3e4fc1

Browse files
authored
Merge pull request #404 from spl/ubuntu-toolchain
Remove ppa:ubuntu-toolchain-r/test from Azure Pipelines
2 parents cbf6d2f + 830d8b1 commit f3e4fc1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

ci/azure-steps.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ steps:
33
- bash: rustup target add $TARGET
44
displayName: Install Rust target
55

6+
# Remove the ubuntu-toolchain-r/test PPA, which is added by default. Some
7+
# packages were removed, and this is causing the g++multilib install to fail.
8+
# Similar issue: https://github.com/scikit-learn/scikit-learn/issues/13928
9+
- bash: sudo add-apt-repository --remove ppa:ubuntu-toolchain-r/test
10+
condition: eq( variables['Agent.OS'], 'Linux' )
11+
displayName: Remove ppa:ubuntu-toolchain-r/test
12+
613
- bash: sudo apt-get install g++-multilib
714
condition: eq( variables['Agent.OS'], 'Linux' )
815
displayName: Install g++-multilib

0 commit comments

Comments
 (0)