From f7852348dc534451b1e62db64b1bd29a4c0c8a3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Claudio=20Andr=C3=A9?= Date: Sat, 9 Mar 2024 11:37:23 -0300 Subject: [PATCH] CI: workaround for Ubuntu VM image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since the base image is out of date, we need to do something to fix it. Signed-off-by: Claudio André --- .circleci/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 844183c3e1..5ef9534fb6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -97,12 +97,16 @@ jobs: arm: machine: image: ubuntu-2204:current + environment: + export DEBIAN_FRONTEND="noninteractive" resource_class: arm.medium steps: - checkout - run: name: Preparing - command: sudo apt update && sudo apt install -y libssl-dev zlib1g-dev libgmp-dev libpcap-dev libbz2-dev && uname -a + command: | + uname -a + # sudo apt update && sudo apt install -y libssl-dev zlib1g-dev libgmp-dev libpcap-dev libbz2-dev - run: name: Building JtR command: .circleci/circle-ci.sh BUILD