Skip to content

Cleaning up cmake and enabled more warnings. #66

Cleaning up cmake and enabled more warnings.

Cleaning up cmake and enabled more warnings. #66

Workflow file for this run

name: Stream List CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v2
- name: Create Build Environment
run: cmake -E make_directory ${{github.workspace}}/build
- name: Configure CMake
working-directory: ${{github.workspace}}/build
shell: bash
run: cmake $GITHUB_WORKSPACE -DLIBSRTP_TEST_APPS=ON -DCMAKE_C_FLAGS:STRING="-DSRTP_NO_STREAM_LIST
-DSRTP_USE_TEST_STREAM_LIST"

Check failure on line 32 in .github/workflows/stream_list.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/stream_list.yml

Invalid workflow file

You have an error in your yaml syntax on line 32
- name: Build
working-directory: ${{github.workspace}}/build
shell: bash
run: cmake --build . -t srtp_driver
- name: Test
working-directory: ${{github.workspace}}/build
shell: bash
run: ctest -R srtp_driver