From afcc9d660831e2b648a3064c56ec3cca81be596d Mon Sep 17 00:00:00 2001 From: deadprogram Date: Tue, 23 Feb 2021 11:30:10 +0100 Subject: [PATCH] build: add apt update that seems needed for when dependencies update or packages are removed Signed-off-by: deadprogram --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 41598d6b..bf36f30a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -132,6 +132,7 @@ commands: - run: name: "Install apt dependencies" command: | + sudo apt-get update sudo apt-get install \ gcc-arm-linux-gnueabihf \ libc6-dev-armel-cross \ @@ -190,6 +191,7 @@ commands: - run: name: "Install apt dependencies" command: | + sudo apt-get update sudo apt-get install \ gcc-arm-linux-gnueabihf \ libc6-dev-armel-cross \