shithub: opusfile

Download patch

ref: b718e3dfacae75958e3f25dd19241e891441e8cb
parent: 131dd027777c8ed8dca501f020a7791d6a697e93
author: Ralph Giles <giles@thaumas.net>
date: Fri May 1 18:18:13 EDT 2020

Add gitlab-ci autotools build description.

Set up a basic autotools job to run on gitlab's continuous
integration runner, so we get some feedback on commits to
that repository.

--- /dev/null
+++ b/.gitlab-ci.yml
@@ -1,0 +1,16 @@
+# Image from https://hub.docker.com/_/gcc/ based on Debian
+image: gcc
+
+build:
+  stage: build
+  before_script:
+    - apt-get update &&
+      apt-get install -y libopus-dev libogg-dev libssl-dev
+        zip
+  script:
+    - ./autogen.sh
+    - ./configure
+    - make
+    - make distcheck
+  tags:
+    - docker