limesdr mini: set default LPF to 20MHz, set default PGA gain to 0dB #386
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
name: GTest tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: [develop] | |
pull_request: | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
# TODO: Revert back to Release once the issue is fixed | |
# https://github.com/actions/runner-images/issues/10004 | |
# BUILD_TYPE: Release | |
BUILD_TYPE: Debug | |
CMAKE_BUILD_PARALLEL_LEVEL: 2 | |
INSTALL_PREFIX: ${{github.workspace}}/deps | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
[ubuntu-latest, windows-latest] | |
# os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install linux dependencies | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -qq libusb-1.0-0-dev | |
- name: Install osx dependencies | |
if: matrix.os == 'macos-latest' | |
run: brew install libusb | |
- name: Configure CMake (windows) | |
if: matrix.os == 'windows-latest' | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=${{env.INSTALL_PREFIX}} -DFX3_SDK_RELATIVE_PATH=deps/FX3SDK -DBUILD_SHARED_LIBS=OFF -DENABLE_UNIT_TESTS=on | |
- name: Configure CMake (linux) | |
if: matrix.os != 'windows-latest' | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=${{env.INSTALL_PREFIX}} -DBUILD_SHARED_LIBS=OFF -DBINARY_OUTPUT_DIR=${{github.workspace}}/build/bin/ -DENABLE_CODE_COVERAGE=0 -DENABLE_UNIT_TESTS=on | |
- name: Build tests | |
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target gtest-runner | |
- name: Run tests (Linux) | |
if: matrix.os != 'windows-latest' | |
run: ${{github.workspace}}/build/bin/gtest-runner | |
- name: Run tests (Windows) | |
if: matrix.os == 'windows-latest' | |
run: ${{github.workspace}}/build/bin/${{env.BUILD_TYPE}}/gtest-runner.exe |