From f59e25a4bf8e7fb7942b7eebcfe3c0e0da0ca249 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Tue, 28 Mar 2023 21:38:22 -0400 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ab344fd..4a2ca2e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,14 +2,14 @@ version: 2.1 jobs: build: docker: - - image: circleci/buildpack-deps:trusty + - image: circleci/ubuntu-server:22.04 environment: - CACHE_DIR: ~/build/wxWidgets/staticlib steps: - checkout - restore_cache: keys: - - cache-{{ checksum "circleci/cache-key" }} + - cache-{{ checksum "travis-ci/build_wxwidgets.sh" }} - run: name: Install Dependencies command: | @@ -28,6 +28,6 @@ jobs: name: Build CubicSDR command: bash travis-ci/build_cubicsdr.sh - save_cache: - key: cache-{{ checksum "circleci/cache-key" }} + key: cache-{{ checksum "travis-ci/build_wxwidgets.sh" }} paths: - ~/build/wxWidgets/staticlib