From bc4c475d4d4efee89eeedd370feb239f5f9fac04 Mon Sep 17 00:00:00 2001 From: Raluca Chis Date: Mon, 20 Jun 2022 17:16:04 +0300 Subject: [PATCH] CI:fix ARM builds -remove not found packages Signed-off-by: Raluca Chis --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index aa83519cc..3cbe04354 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -264,9 +264,9 @@ stages: steps: - script: | set -e - sudo apt-get install -y gcc-arm-linux-gnueabihf libc6-dev-armhf-cross qemu-arm-static - sudo apt-get install -y g++-arm-linux-gnueabihf libstdc++-4.8-dev-armhf-cross - sudo apt-get install -y g++-aarch64-linux-gnu libstdc++-4.8-dev-arm64-cross + sudo apt-get install -y gcc-arm-linux-gnueabihf libc6-dev-armhf-cross + sudo apt-get install -y g++-arm-linux-gnueabihf + sudo apt-get install -y g++-aarch64-linux-gnu sudo apt-get install -y qemu-system-ppc64 sudo apt-get install qemu sudo docker run --rm --privileged multiarch/qemu-user-static --reset -p yes