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:
-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