mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-25 13:18:37 -05:00
Move scripts to circle-ci
Minor updates to build scripts
This commit is contained in:
parent
2dff8948e3
commit
0b899dbdb3
@ -1,6 +1,6 @@
|
|||||||
version: 2.1
|
version: 2.1
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build_linux:
|
||||||
docker:
|
docker:
|
||||||
- image: cimg/base:2020.01
|
- image: cimg/base:2020.01
|
||||||
environment:
|
environment:
|
||||||
@ -9,7 +9,7 @@ jobs:
|
|||||||
- checkout
|
- checkout
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
keys:
|
keys:
|
||||||
- cache-{{ checksum "travis-ci/build_wxwidgets.sh" }}
|
- cache-{{ checksum ".circleci/scripts/build_wxwidgets.sh" }}
|
||||||
- run:
|
- run:
|
||||||
name: Install Dependencies
|
name: Install Dependencies
|
||||||
command: |
|
command: |
|
||||||
@ -17,17 +17,17 @@ jobs:
|
|||||||
sudo apt-get install -y build-essential cmake libpulse-dev libgtk-3-dev freeglut3 freeglut3-dev libhamlib-dev
|
sudo apt-get install -y build-essential cmake libpulse-dev libgtk-3-dev freeglut3 freeglut3-dev libhamlib-dev
|
||||||
- run:
|
- run:
|
||||||
name: Build wxWidgets
|
name: Build wxWidgets
|
||||||
command: bash travis-ci/build_wxwidgets.sh
|
command: bash .circleci/scripts/build_wxwidgets.sh
|
||||||
- run:
|
- run:
|
||||||
name: Build LiquidDSP
|
name: Build LiquidDSP
|
||||||
command: bash travis-ci/build_liquiddsp.sh
|
command: bash .circleci/scripts/build_liquiddsp.sh
|
||||||
- run:
|
- run:
|
||||||
name: Build SoapySDR
|
name: Build SoapySDR
|
||||||
command: bash travis-ci/build_soapysdr.sh
|
command: bash .circleci/scripts/build_soapysdr.sh
|
||||||
- run:
|
- run:
|
||||||
name: Build CubicSDR
|
name: Build CubicSDR
|
||||||
command: bash travis-ci/build_cubicsdr.sh
|
command: bash .circleci/scripts/build_cubicsdr.sh
|
||||||
- save_cache:
|
- save_cache:
|
||||||
key: cache-{{ checksum "travis-ci/build_wxwidgets.sh" }}
|
key: cache-{{ checksum ".circleci/scripts/build_wxwidgets.sh" }}
|
||||||
paths:
|
paths:
|
||||||
- ~/build/wxWidgets/staticlib
|
- ~/build/wxWidgets/staticlib
|
||||||
|
5
.circleci/scripts/build_cubicsdr.sh
Normal file
5
.circleci/scripts/build_cubicsdr.sh
Normal file
@ -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 -j$(nproc)
|
@ -1,16 +1,14 @@
|
|||||||
# Liquid-DSP
|
# Liquid-DSP
|
||||||
cd $HOME/build
|
mkdir -p $HOME/build/jgaeddert
|
||||||
|
cd $HOME/build/jgaeddert
|
||||||
mkdir jgaeddert/
|
|
||||||
cd jgaeddert/
|
|
||||||
git clone https://github.com/jgaeddert/liquid-dsp.git
|
git clone https://github.com/jgaeddert/liquid-dsp.git
|
||||||
|
|
||||||
cd liquid-dsp/
|
cd $HOME/build/jgaeddert/liquid-dsp
|
||||||
./bootstrap.sh
|
./bootstrap.sh
|
||||||
|
|
||||||
echo "Configuring liquid-dsp.."
|
echo "Configuring liquid-dsp.."
|
||||||
./configure > /dev/null
|
./configure > /dev/null
|
||||||
|
|
||||||
echo "Building liquid-dsp.."
|
echo "Building liquid-dsp.."
|
||||||
make -j2 > /dev/null
|
make -j$(nproc) > /dev/null
|
||||||
sudo make install
|
sudo make install
|
13
.circleci/scripts/build_soapysdr.sh
Normal file
13
.circleci/scripts/build_soapysdr.sh
Normal file
@ -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 -j$(nproc) > /dev/null
|
||||||
|
|
||||||
|
sudo make install
|
@ -8,9 +8,8 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
echo "Fetch wxWidgets.."
|
echo "Fetch wxWidgets.."
|
||||||
cd $HOME/build
|
|
||||||
mkdir -p $HOME/build/wxWidgets/staticlib
|
mkdir -p $HOME/build/wxWidgets/staticlib
|
||||||
cd wxWidgets
|
cd $HOME/build/wxWidgets
|
||||||
wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.1/wxWidgets-3.2.1.tar.bz2 > /dev/null
|
wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.1/wxWidgets-3.2.1.tar.bz2 > /dev/null
|
||||||
|
|
||||||
echo "Unpacking wxWidgets.."
|
echo "Unpacking wxWidgets.."
|
||||||
@ -18,15 +17,14 @@ tar -xvjf wxWidgets-3.2.1.tar.bz2 > /dev/null
|
|||||||
cd wxWidgets-3.2.1/
|
cd wxWidgets-3.2.1/
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
|
|
||||||
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
if [[ "$CIRCLE_JOB" == "build_linux" ]]; then
|
||||||
./configure --with-opengl --disable-glcanvasegl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webview --disable-webviewwebkit --prefix=`echo $HOME/build/wxWidgets/staticlib` CXXFLAGS="-std=c++0x"
|
./configure --with-opengl --disable-glcanvasegl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webview --disable-webviewwebkit --prefix=`echo $HOME/build/wxWidgets/staticlib` CXXFLAGS="-std=c++0x"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
if [[ "$CIRCLE_JOB" == "build_mac" ]]; then
|
||||||
./configure --with-opengl --disable-glcanvasegl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --with-mac --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --prefix=`echo $HOME/build/wxWidgets/staticlib` CXXFLAGS="-std=c++0x" --with-libiconv=/usr
|
./configure --with-opengl --disable-glcanvasegl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --with-mac --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --prefix=`echo $HOME/build/wxWidgets/staticlib` CXXFLAGS="-std=c++0x" --with-libiconv=/usr
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Building wxWidgets.."
|
echo "Building wxWidgets.."
|
||||||
make -j2
|
make -j$(nproc)
|
||||||
make install
|
make install
|
||||||
|
|
@ -1,7 +0,0 @@
|
|||||||
# CubicSDR
|
|
||||||
cd $HOME/build
|
|
||||||
mkdir cjcliffe/CubicSDR-build
|
|
||||||
cd cjcliffe/CubicSDR-build
|
|
||||||
cmake ../CubicSDR -DCMAKE_BUILD_TYPE=Release -DwxWidgets_CONFIG_EXECUTABLE=$HOME/build/wxWidgets/staticlib/bin/wx-config -DUSE_HAMLIB=1 -DENABLE_DIGITAL_LAB=1
|
|
||||||
make -j2
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
|||||||
# Soapy SDR
|
|
||||||
cd $HOME/build
|
|
||||||
|
|
||||||
mkdir pothosware/
|
|
||||||
cd pothosware/
|
|
||||||
git clone https://github.com/pothosware/SoapySDR.git
|
|
||||||
|
|
||||||
mkdir SoapySDR-build
|
|
||||||
cd SoapySDR-build
|
|
||||||
|
|
||||||
cmake ../SoapySDR -DCMAKE_BUILD_TYPE=Release
|
|
||||||
|
|
||||||
echo "Building SoapySDR.."
|
|
||||||
make -j2 > /dev/null
|
|
||||||
|
|
||||||
sudo make install
|
|
Loading…
Reference in New Issue
Block a user