Skip to content

Commit ac1e031

Browse files
committed
Run apt update before apt install
Trying to fix recent errors on CI...
1 parent 3ba5f27 commit ac1e031

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)