shithub: libopusenc

Download patch

ref: 6e0a98cc0947d131640bf6816708cd940a0b8f08
parent: 9fa13ca8714be423f7680b987189dc2ff95fb39a
author: Ralph Giles <giles@thaumas.net>
date: Sat May 9 13:36:42 EDT 2020

Add gitlab integration tests.

We've moved hosting to a gitlab instance. Make use of the built-in
integration testing framework to verify commits.

Does a straightforward autotools build.

Signed-off-by: Mark Harris <mark.hsj@gmail.com>

--- /dev/null
+++ b/.gitlab-ci.yml
@@ -1,0 +1,16 @@
+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 libopus-dev zip doxygen graphviz
+  script:
+    - ./autogen.sh
+    - ./configure
+    - make
+    - make distcheck