summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuraj Fiala <jurf@riseup.net>2018-03-02 11:47:19 +0000
committerJuraj Fiala <jurf@riseup.net>2018-03-02 13:22:27 +0100
commit89efbefefea3e955964ed4ccb0b3af8f64b7b878 (patch)
tree054d6621c856517f5140d572a2990ea2437cad41
parentcad7c245c6bc1e3626c13c919abc2739c6dfd0dc (diff)
downloadgnome-themes-standard-89efbefefea3e955964ed4ccb0b3af8f64b7b878.tar.gz
Add .gitlab-ci.yml
-rw-r--r--.gitlab-ci.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 00000000..27709442
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,13 @@
+# use the official gcc image, based on debian
+# can use verions as well, like gcc:5.2
+# see https://hub.docker.com/_/gcc/
+image: gcc
+
+build:
+ stage: build
+ before_script:
+ - apt update && apt -y --no-install-recommends install make autoconf gnome-common libgtk2.0-dev
+ script:
+ - ./autogen.sh --disable-gtk3-engine
+ - make
+ - make install \ No newline at end of file