Update config.yml

This commit is contained in:
Charles J. Cliffe 2023-03-28 21:38:22 -04:00 committed by GitHub
parent 41d27ad357
commit f59e25a4bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,14 +2,14 @@ version: 2.1
jobs: jobs:
build: build:
docker: docker:
- image: circleci/buildpack-deps:trusty - image: circleci/ubuntu-server:22.04
environment: environment:
- CACHE_DIR: ~/build/wxWidgets/staticlib - CACHE_DIR: ~/build/wxWidgets/staticlib
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
keys: keys:
- cache-{{ checksum "circleci/cache-key" }} - cache-{{ checksum "travis-ci/build_wxwidgets.sh" }}
- run: - run:
name: Install Dependencies name: Install Dependencies
command: | command: |
@ -28,6 +28,6 @@ jobs:
name: Build CubicSDR name: Build CubicSDR
command: bash travis-ci/build_cubicsdr.sh command: bash travis-ci/build_cubicsdr.sh
- save_cache: - save_cache:
key: cache-{{ checksum "circleci/cache-key" }} key: cache-{{ checksum "travis-ci/build_wxwidgets.sh" }}
paths: paths:
- ~/build/wxWidgets/staticlib - ~/build/wxWidgets/staticlib