We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cbf6d2f + 830d8b1 commit f3e4fc1Copy full SHA for f3e4fc1
ci/azure-steps.yml
@@ -3,6 +3,13 @@ steps:
3
- bash: rustup target add $TARGET
4
displayName: Install Rust target
5
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
+
13
- bash: sudo apt-get install g++-multilib
14
condition: eq( variables['Agent.OS'], 'Linux' )
15
displayName: Install g++-multilib
0 commit comments