Skip to content

Update README.md

Update README.md #255

Workflow file for this run

name: CINoWindows
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
inputs:
debug_enabled:
description: 'Build and run interactive shell'
required: false
default: false
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
# Installation of dependencies is too OS-dependent now, we don't
# miss that much by particularizing this in a per-OS basis.
build-linux-appimage:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Setup interactive shell session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
- name: Install Qt
uses: jurplel/install-qt-action@v2
- name: Install sndfile
run: sudo apt-get install libsndfile1-dev
# libvolk2-dev is not available in Ubuntu 18.04
- name: Install Volk
run: sudo apt-get install libvolk1-dev
- name: Install cURL
run: sudo apt-get install libcurl4-openssl-dev
- name: Install FFTW3
run: sudo apt-get install libfftw3-dev
- name: Install SoapySDR modules
run: sudo apt-get install soapysdr-module-all
- name: Install SoapySDR development files
run: sudo apt-get install libsoapysdr-dev
- name: Install libxml2
run: sudo apt-get install libxml2-dev
- name: Install portaudio
run: sudo apt-get install portaudio19-dev
- name: Install ALSA libraries
run: sudo apt-get install libasound2-dev
- name: Download linuxdeployqt AppImage
run: wget https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage
- name: Install linuxdeployqt system-wide
run: |
sudo mv linuxdeployqt-continuous-x86_64.AppImage /usr/bin/linuxdeployqt
sudo chmod a+x /usr/bin/linuxdeployqt
- name: Download appimagetool
run: wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage
- name: Install appimagetool system-wide
run: |
sudo mv appimagetool-x86_64.AppImage /usr/bin/appimagetool
sudo chmod a+x /usr/bin/appimagetool
- name: Build & Distribute (SigDigger)
run: |
cd Scripts
chmod a+x dist-appimage.sh
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH":"$PWD"/deploy-root/lib
SIGDIGGER_EMBED_SOAPYSDR=1 BUILDTYPE=Release BRANCH=master ./dist-appimage.sh
cd ..
- name: Archive AppImage files
uses: actions/upload-artifact@v2
with:
name: linux-latest-appimage
path: Scripts/*.AppImage
build-macos:
runs-on: macos-10.15
steps:
- uses: actions/setup-python@v3
with:
python-version: '3.9' # Version range or exact version of a Python version to use, using SemVer's version range syntax
- uses: actions/checkout@v2
- name: Setup interactive shell session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: 5.14.2
setup-python: false
py7zrversion: '==0.18.1'
- name: Install sndfile
run: brew install libsndfile
- name: Install Volk
run: brew install volk
- name: Install cURL
run: brew install curl
- name: Install FFTW3
run: brew install fftw
- name: Adding SoapySDR taps (Pothos)
run: brew tap pothosware/homebrew-pothos && brew update
- name: Install SoapySDR (Pothos)
run: brew install pothossoapy
- name: Fix brew/SoapySDR linking disaster
run: |
rm -f /usr/local/lib/libSoapySDR.0.8.dylib
ln -s /usr/local/lib/libSoapySDR.0.8.1.dylib /usr/local/lib/libSoapySDR.0.8.dylib
- name: Creating modules0.8
run: sudo mkdir -p /usr/local/lib/SoapySDR/modules0.8
# - name: Install SDRPlay API
# run: wget https://www.sdrplay.com/software/SDRplay_RSP_API-MacOSX-3.07.3.pkg && sudo installer -pkg SDRplay_RSP_API-MacOSX-3.07.3.pkg -target /
# - name: Build and install SoapySDR module for SDRPlay
# run: git clone https://github.com/pothosware/SoapySDRPlay3 && cd SoapySDRPlay3 && mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. && make -j3 && sudo make install && cd ../../
# soapyosmo removed because of random compilation errors
# soapyuhd removed for the same reason
# soapyaudio removed as it keeps breaking
# soapyremote removed because it crashes for whatever reason
# SDRPlay support removed becuase it hangs SoapySDR on startup
- name: Install SoapySDR modules (Pothos)
run: |
sudo chmod -R a+rw /usr/local/lib/SoapySDR/modules0.8
brew install soapyrtlsdr soapyhackrf soapybladerf soapyairspy soapyairspyhf soapyredpitaya soapyiris limesuite soapyplutosdr
- name: Remove SoapySDR remote module to prevent crashes
run: sudo rm /usr/local/lib/SoapySDR/modules0.8/libremote*
- name: Install libxml2
run: brew install libxml2
- name: Install portaudio
run: brew install portaudio
- name: Build & Distribute (SigDigger)
run: |
cd Scripts
chmod a+x dist-dmg.sh
SIGDIGGER_EMBED_SOAPYSDR=1 BUILDTYPE=Release BRANCH=master ./dist-dmg.sh
cd ..
- name: Archive .DMG files
uses: actions/upload-artifact@v2
with:
name: macos-latest-dmg
path: Scripts/*.dmg