Skip to content

Adding cmake configuration to download roc-toolkit with branch provided via cmake variable #141

Adding cmake configuration to download roc-toolkit with branch provided via cmake variable

Adding cmake configuration to download roc-toolkit with branch provided via cmake variable #141

Workflow file for this run

name: build
on:
repository_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '0 0 * * 1'
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get -y install g++ pkg-config scons ragel gengetopt \
libuv1-dev libunwind-dev libpulse-dev libsox-dev libcpputest-dev libspeexdsp-dev \
libtool intltool autoconf automake make cmake
- name: Build Roc
run: |
git clone https://github.com/roc-streaming/roc-toolkit.git /tmp/roc
scons -C /tmp/roc -Q --build-3rdparty=openfec
sudo scons -C /tmp/roc -Q --build-3rdparty=openfec install
- name: Build tests
run: |
make build
test -e ./bin/rt-tests