Stop live555 logger from claiming it's backing up when it actually isn't #10
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: Makefile CI | |
on: | |
push: | |
branches: [ "live555-verkada" ] | |
pull_request: | |
branches: [ "live555-verkada" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: configure | |
run: ./configure | |
- name: Generate Makefiles | |
run: ./genMakefiles linux | |
- name: Make All live555 targets | |
run: make CPPFLAGS='-DLOG_FILE_TMP_DIR="\"/test/path\""' |