From 8cebd56a11be1d3fbc87344f4e18fcdec6382b37 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Thu, 24 Jun 2021 10:52:47 -0500 Subject: [PATCH] tools/ci.sh: Run apt-get update in ci_powerpc_setup. This fixes failing builds when the GitHub CI image lags behind Ubuntu security updates. --- tools/ci.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/ci.sh b/tools/ci.sh index 3039573322..6d7c643f5d 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -172,6 +172,7 @@ function ci_nrf_build { # ports/powerpc function ci_powerpc_setup { + sudo apt-get update sudo apt-get install gcc-powerpc64le-linux-gnu libc6-dev-ppc64el-cross }