Skip to content

STAR-1275: Read the peers SRT version and the negotiated latency from the socket #96

STAR-1275: Read the peers SRT version and the negotiated latency from the socket

STAR-1275: Read the peers SRT version and the negotiated latency from the socket #96

Workflow file for this run

name: unit_tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test-release:
runs-on: stardom-nuc
steps:
- uses: actions/checkout@v2
- name: CMake set-up for release
run: |
rm -rf build
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
- name: Build release
run: |
cd build
make runUnitTests
- name: Run tests with release
run: |
cd build
./runUnitTests
test-debug:
runs-on: stardom-nuc
steps:
- uses: actions/checkout@v2
- name: CMake set-up for debug
run: |
rm -rf build
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
- name: Build debug
run: |
cd build
make runUnitTests
- name: Run tests with debug
run: |
cd build
./runUnitTests