From b9e128dc6f048e1434d38666a5096c4a675ce8fc Mon Sep 17 00:00:00 2001 From: Leorize Date: Wed, 10 Mar 2021 19:17:50 -0600 Subject: [PATCH] azure: use apt-get instead of apt-fast From https://github.com/nim-lang/Nim/issues/17325#issuecomment-796278423, it appears that apt-fast is ignoring errors. --- azure-pipelines.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 109efc6e12417..7edc86a6297a1 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -64,9 +64,9 @@ jobs: displayName: 'Install node.js 12.x' - bash: | - sudo apt-fast update -qq + sudo apt-get update -qq DEBIAN_FRONTEND='noninteractive' \ - sudo apt-fast install --no-install-recommends -yq \ + sudo apt-get install --no-install-recommends -yq \ libcurl4-openssl-dev libgc-dev libsdl1.2-dev libsfml-dev valgrind libc6-dbg displayName: 'Install dependencies (amd64 Linux)' condition: and(eq(variables['Agent.OS'], 'Linux'), eq(variables['CPU'], 'amd64')) @@ -82,11 +82,11 @@ jobs: Pin-Priority: 1001 EOF - sudo apt-fast update -qq + sudo apt-get update -qq # `:i386` (e.g. in `libffi-dev:i386`) is needed otherwise you may get: # `could not load: libffi.so` during dynamic loading. DEBIAN_FRONTEND='noninteractive' \ - sudo apt-fast install --no-install-recommends --allow-downgrades -yq \ + sudo apt-get install --no-install-recommends --allow-downgrades -yq \ g++-multilib gcc-multilib libcurl4-openssl-dev:i386 libgc-dev:i386 \ libsdl1.2-dev:i386 libsfml-dev:i386 libglib2.0-dev:i386 libffi-dev:i386