fix getting stuck with a full buffer without a valid frame #42
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: build | |
env: | |
VERSION: ${{ format('{0}.{1}.{2}', 0, 2, github.run_number) }} | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
container: | |
image: audiostreamingplatform/hdlcpp:1.1 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Build for x86 | |
run: scripts/build_x86.sh | |
- name: Run unit tests | |
run: scripts/run_tests.sh | |
- name: Generate coverage | |
run: scripts/coverage.sh | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v2 | |
with: | |
files: .build-x86/coverage.xml | |
flags: unit-tests | |
name: hdlcpp |