From 3a273540f4e60a81d2a42fb3b53165212e116db1 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Tue, 26 Mar 2019 13:03:14 +0100 Subject: [PATCH] CI: Run apt update before installing qemu --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 96e3777d..57dbdfab 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -69,7 +69,7 @@ steps: - script: cargo test displayName: 'Unit Tests' -- script: sudo apt install qemu-system-x86 +- script: sudo apt update && sudo apt install qemu-system-x86 condition: eq( variables['Agent.OS'], 'Linux' ) displayName: 'Install QEMU (Linux)'