From ac1e031ce63a964970b39501c48777f6f9afd207 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 24 Oct 2019 08:04:01 -0700 Subject: [PATCH] Run `apt update` before `apt install` Trying to fix recent errors on CI... --- ci/azure-test-all.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/azure-test-all.yml b/ci/azure-test-all.yml index e682274e75e..648e4a6ecb1 100644 --- a/ci/azure-test-all.yml +++ b/ci/azure-test-all.yml @@ -7,7 +7,7 @@ steps: - bash: rustup target add $OTHER_TARGET displayName: "Install cross-compile target" -- bash: sudo apt install gcc-multilib +- bash: sudo apt update -y && sudo apt install gcc-multilib -y displayName: "Install gcc-multilib (linux)" condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))