Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiph/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2020-07-16 20:37:56 +0300
committerRalph Giles <giles@thaumas.net>2020-07-16 21:59:42 +0300
commitf82c4a34bf73528646bed8e64cd2215df1080fd4 (patch)
treecb0598f8a14ba4999bc87a821d3e3fda88590a46
parent7db954e9f9c8644b8060a5a412cbec6495ccd39a (diff)
gitlab-ci: Add a basic build configuration.
Do a basic autoconf build and check to verify commits in gitlab reposistories. Signed-off-by: Tristan Matthews <tmatth@videolan.org> Signed-off-by: Marvin Scholz <epirat07@gmail.com>
-rw-r--r--.gitlab-ci.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..03ae775
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,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 libogg-dev
+ script:
+ - ./autogen.sh
+ - ./configure
+ - make
+ - make distcheck