Skip to content

Fixed a loop variable concurrency bug. #33

Fixed a loop variable concurrency bug.

Fixed a loop variable concurrency bug. #33

Workflow file for this run

name: Test Zimtohrli
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
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)