forked from cjcliffe/CubicSDR
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into winbuild-updates
- Loading branch information
Showing
26 changed files
with
7,638 additions
and
6,717 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
version: 2.1 | ||
jobs: | ||
build: | ||
docker: | ||
- image: cimg/base:current-22.04 | ||
resource_class: medium | ||
environment: | ||
- CACHE_DIR: ~/build/wxWidgets/staticlib | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
keys: | ||
- cache-{{ checksum ".circleci/scripts/build_wxwidgets.sh" }} | ||
- run: | ||
name: Install Dependencies | ||
command: | | ||
sudo apt-get update | ||
sudo apt-get install -y build-essential cmake libpulse-dev libgtk-3-dev freeglut3 freeglut3-dev libhamlib-dev | ||
- run: | ||
name: Build wxWidgets | ||
command: bash .circleci/scripts/build_wxwidgets.sh | ||
- run: | ||
name: Build LiquidDSP | ||
command: bash .circleci/scripts/build_liquiddsp.sh | ||
- run: | ||
name: Build SoapySDR | ||
command: bash .circleci/scripts/build_soapysdr.sh | ||
- run: | ||
name: Build CubicSDR | ||
command: bash .circleci/scripts/build_cubicsdr.sh | ||
- save_cache: | ||
key: cache-{{ checksum ".circleci/scripts/build_wxwidgets.sh" }} | ||
paths: | ||
- ~/build/wxWidgets/staticlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# CubicSDR | ||
mkdir -p $HOME/build/cjcliffe/CubicSDR-build | ||
cd $HOME/build/cjcliffe/CubicSDR-build | ||
cmake ~/project -DCMAKE_BUILD_TYPE=Release -DwxWidgets_CONFIG_EXECUTABLE=$HOME/build/wxWidgets/staticlib/bin/wx-config -DUSE_HAMLIB=1 -DENABLE_DIGITAL_LAB=1 | ||
make -j2 |
10 changes: 4 additions & 6 deletions
10
travis-ci/build_liquiddsp.sh → .circleci/scripts/build_liquiddsp.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
# Liquid-DSP | ||
cd $HOME/build | ||
|
||
mkdir jgaeddert/ | ||
cd jgaeddert/ | ||
mkdir -p $HOME/build/jgaeddert | ||
cd $HOME/build/jgaeddert | ||
git clone https://github.com/jgaeddert/liquid-dsp.git | ||
|
||
cd liquid-dsp/ | ||
cd $HOME/build/jgaeddert/liquid-dsp | ||
./bootstrap.sh | ||
|
||
echo "Configuring liquid-dsp.." | ||
./configure > /dev/null | ||
|
||
echo "Building liquid-dsp.." | ||
make -j2 > /dev/null | ||
sudo make install | ||
sudo make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Soapy SDR | ||
mkdir -p $HOME/build/pothosware/SoapySDR-build | ||
|
||
cd $HOME/build/pothosware | ||
git clone https://github.com/pothosware/SoapySDR.git | ||
|
||
cd $HOME/build/pothosware/SoapySDR-build | ||
cmake $HOME/build/pothosware/SoapySDR -DCMAKE_BUILD_TYPE=Release | ||
|
||
echo "Building SoapySDR.." | ||
make -j2 > /dev/null | ||
|
||
sudo make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.