Star 1305 fix demuxer looses sync #64
Workflow file for this run
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: Unit tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: get the ts test file | |
run: | | |
wget https://github.com/andersc/assets/raw/master/bars.ts | |
- name: build unit tests | |
run: | | |
mkdir build | |
cd build | |
cmake -DCMAKE_BUILD_TYPE=Release .. | |
cmake --build . --config Release --target mpeg_ts_unit_tests | |
- name: run unit tests | |
run: | | |
build/mpeg_ts_unit_tests |