Merge branch 'master' of https://github.com/YaxiongXiePrinceton/NG-Scope #75
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: C/C++ CI | |
on: push | |
jobs: | |
x86_ubuntu_build: | |
name: Build on x86 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04, ubuntu-20.04] | |
compiler: [gcc, clang] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build srsRAN on x86 ${{ matrix.os }} | |
run: | | |
sudo apt update | |
sudo apt install -y build-essential cmake libfftw3-dev libmbedtls-dev libpcsclite-dev libboost-program-options-dev libconfig++-dev libsctp-dev colordiff ninja-build valgrind | |
mkdir build && cd build && cmake -DRF_FOUND=True -GNinja .. && ninja && ctest | |
aarch64_ubuntu_build: | |
name: Build on aarch64 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04] | |
compiler: [gcc, clang] | |
include: | |
- os: ubuntu-20.04 | |
distro: ubuntu20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build srsRAN on aarch64 ${{ matrix.os }} | |
uses: uraimo/run-on-arch-action@master | |
with: | |
arch: aarch64 | |
distro: ${{ matrix.distro }} | |
run: | | |
export CTEST_PARALLEL_LEVEL=$(nproc --all) | |
apt update | |
apt install -y build-essential cmake libfftw3-dev libmbedtls-dev libpcsclite-dev libboost-program-options-dev libconfig++-dev libsctp-dev ninja-build | |
ls -l && pwd && mkdir build && cd build && cmake -DRF_FOUND=True -GNinja .. && ninja |