Skip to content

Commit 0208708

Browse files
committed
Auto merge of #7541 - alexcrichton:try-apt-update, r=alexcrichton
Run `apt update` before `apt install` Trying to fix recent errors on CI...
2 parents 3ba5f27 + ac1e031 commit 0208708

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/azure-test-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ steps:
77
- bash: rustup target add $OTHER_TARGET
88
displayName: "Install cross-compile target"
99

10-
- bash: sudo apt install gcc-multilib
10+
- bash: sudo apt update -y && sudo apt install gcc-multilib -y
1111
displayName: "Install gcc-multilib (linux)"
1212
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))
1313

0 commit comments

Comments
 (0)