summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: ec3ded947fdf9e1be1e7c1bebcc5ad33479e3c75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
stages:
  - build

build-ubuntu:
  image: ubuntu:devel
  stage: build
  before_script:
    - apt-get update
    - apt-get install -q -y --no-install-recommends
                      autoconf-archive
                      automake
                      autopoint
                      build-essential
                      gettext
                      libstartup-notification0-dev
                      docbook-xml
                      libx11-dev
                      libxres-dev
                      libxext-dev
                      libgtk-3-dev
                      libglib2.0-dev
                      libtool
                      gobject-introspection
                      libgirepository1.0-dev
                      gtk-doc-tools
                      libglib2.0-doc
                      libgtk-3-doc
  script:
    - ./autogen.sh
    - make
    - make distcheck