Added option to filter out low quality distortions when sampling one dataset to another. #204
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: Test Zimtohrli | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: '! github.event.pull_request.draft' | |
steps: | |
- name: Install dependencies | |
run: sudo apt install -y libogg-dev libvorbis-dev libflac-dev cmake ninja-build libasound2-dev libglfw3-dev libopus-dev | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Configure | |
run: ./configure.sh | |
- name: Build | |
run: (cd build && env ninja) | |
- name: Test | |
run: (cd build && env ctest --output-on-failure) |