Add libogg for handling opus streams reasonably

This commit is contained in:
jacqueline
2023-08-08 23:14:42 +10:00
parent 6c3501dbcb
commit 1b6811663c
130 changed files with 17202 additions and 33 deletions
+40
View File
@@ -0,0 +1,40 @@
name: Autotools build
on:
push:
pull_request:
schedule:
- cron: '0 0 1 * *'
jobs:
build:
strategy:
matrix:
os:
[
ubuntu-latest,
macos-latest,
]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install macOS dependencies
if: startsWith(matrix.os,'macos')
run: brew install automake pkg-config
- name: configure
run: |
./autogen.sh
./configure
- name: build
run: make
- name: test
run: make check
- name: distcheck
run: make distcheck
+38
View File
@@ -0,0 +1,38 @@
name: CMake build
on:
push:
pull_request:
schedule:
- cron: '0 0 1 * *'
jobs:
build:
strategy:
matrix:
os:
[
ubuntu-latest,
macos-latest,
windows-latest,
]
runs-on: ${{ matrix.os }}
env:
BUILD: _build
steps:
- uses: actions/checkout@v2
- name: Prepare build directory
run: mkdir ${{ env.BUILD }}
- name: Configure
run: cmake -S . -B ${{ env.BUILD }}
- name: Build
run: cmake --build ${{ env.BUILD }}
- name: Test
run: ctest --test-dir ${{ env.BUILD }} -V -C Debug