summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 2d44be387a3d6cc4f1dfe39525bb732d12386718 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 -qq && apt -y -qq --no-install-recommends install make autoconf gnome-common libgtk2.0-dev
  script: 
    - ./autogen.sh --disable-gtk3-engine
    - make
    - make install