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
+26
View File
@@ -0,0 +1,26 @@
default:
tags:
- docker
# Image from https://hub.docker.com/_/gcc/ based on Debian.
image: gcc:9
autoconf:
stage: build
before_script:
- apt-get update &&
apt-get install -y zip cmake
script:
- ./autogen.sh
- ./configure
- make
- make distcheck
cmake:
stage: build
before_script:
- apt-get update &&
apt-get install -y cmake ninja-build
script:
- mkdir build
- cmake -S . -B build -G "Ninja" -DCMAKE_BUILD_TYPE=Release
- cmake --build build