Skip to content

Refactored the calculation/correlation framework. #37

Refactored the calculation/correlation framework.

Refactored the calculation/correlation framework. #37

Workflow file for this run

name: Test Zimtohrli
on:
push:
branches:
- master
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)