summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2019-02-27 14:20:31 +0100
committerBastien Nocera <hadess@hadess.net>2019-02-27 14:26:26 +0100
commit0e1b4bdafc364d5b62ffd14847e9e6ecfefbf2c9 (patch)
tree8bd538c5ca8cd5daceb2dd4137ab0b0acc7750ff
parentae1a34aafce7026b8c0f65a43c9192d756fe1057 (diff)
downloadlibgnome-volume-control-0e1b4bdafc364d5b62ffd14847e9e6ecfefbf2c9.tar.gz
ci: Add CI
This just builds the "what-did-you-plugin" test application, but it's good enough to catch the worst failures.
-rw-r--r--.gitlab-ci.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..35b568c
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,11 @@
+stages:
+- test
+
+build-fedora:
+ image: fedora:latest
+ stage: test
+ before_script:
+ - dnf install -y redhat-rpm-config gcc make pulseaudio-libs-devel alsa-lib-devel gtk3-devel
+ script:
+ - make -f Makefile.tests
+