2023-03-28 12:41:11 -04:00
|
|
|
version: 2.1
|
|
|
|
jobs:
|
2023-03-28 22:24:29 -04:00
|
|
|
build_linux:
|
2023-03-28 12:41:11 -04:00
|
|
|
docker:
|
2023-03-28 21:42:00 -04:00
|
|
|
- image: cimg/base:2020.01
|
2023-03-28 21:31:34 -04:00
|
|
|
environment:
|
|
|
|
- CACHE_DIR: ~/build/wxWidgets/staticlib
|
2023-03-28 12:41:11 -04:00
|
|
|
steps:
|
|
|
|
- checkout
|
2023-03-28 21:31:34 -04:00
|
|
|
- restore_cache:
|
|
|
|
keys:
|
2023-03-28 22:24:29 -04:00
|
|
|
- cache-{{ checksum ".circleci/scripts/build_wxwidgets.sh" }}
|
2023-03-28 12:41:11 -04:00
|
|
|
- run:
|
2023-03-28 21:31:34 -04:00
|
|
|
name: Install Dependencies
|
|
|
|
command: |
|
|
|
|
sudo apt-get update
|
2023-03-28 21:43:56 -04:00
|
|
|
sudo apt-get install -y build-essential cmake libpulse-dev libgtk-3-dev freeglut3 freeglut3-dev libhamlib-dev
|
2023-03-28 21:46:34 -04:00
|
|
|
- run:
|
|
|
|
name: Build wxWidgets
|
2023-03-28 22:24:29 -04:00
|
|
|
command: bash .circleci/scripts/build_wxwidgets.sh
|
2023-03-28 21:31:34 -04:00
|
|
|
- run:
|
|
|
|
name: Build LiquidDSP
|
2023-03-28 22:24:29 -04:00
|
|
|
command: bash .circleci/scripts/build_liquiddsp.sh
|
2023-03-28 21:31:34 -04:00
|
|
|
- run:
|
|
|
|
name: Build SoapySDR
|
2023-03-28 22:24:29 -04:00
|
|
|
command: bash .circleci/scripts/build_soapysdr.sh
|
2023-03-28 21:31:34 -04:00
|
|
|
- run:
|
|
|
|
name: Build CubicSDR
|
2023-03-28 22:24:29 -04:00
|
|
|
command: bash .circleci/scripts/build_cubicsdr.sh
|
2023-03-28 21:31:34 -04:00
|
|
|
- save_cache:
|
2023-03-28 22:24:29 -04:00
|
|
|
key: cache-{{ checksum ".circleci/scripts/build_wxwidgets.sh" }}
|
2023-03-28 21:31:34 -04:00
|
|
|
paths:
|
|
|
|
- ~/build/wxWidgets/staticlib
|