From 6e01717a57ba9def189cd50fa0e715da7d0390bb Mon Sep 17 00:00:00 2001 From: rocky Date: Tue, 16 Jan 2024 15:28:46 -0500 Subject: [PATCH] CircleCI woes --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 37dc491..0b904f9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: CIRCLE_ARTIFACTS: /tmp/circleci-artifacts CIRCLE_TEST_REPORTS: /tmp/circleci-test-results docker: - - image: circleci/buildpack-deps + - image: cimg/base:2024.01 steps: # Machine Setup # If you break your build into multiple jobs with workflows, you will probably want to do the parts of this that are relevant in each @@ -21,6 +21,8 @@ jobs: # Checkout # This would typically go in either a build or a build-and-test job when using workflows # This is based on your 1.0 configuration file or project settings + - run: sudo apt -y update + - run: sudo apt -y install autoconf automake texinfo - run: sh ./autogen.sh # Dependencies # This would typically go in either a build or a build-and-test job when using workflows