summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: fbb7724e823a2e60e2236587291c722598e290dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
image: ubuntu:16.04
before_script:
  - apt-get update -qq && apt-get install -y -qq autoconf automake build-essential cmake libtool libjpeg8-dev libjbig-dev liblzma-dev ninja-build zlib1g-dev

stages:
  - build

autoconf:
  stage: build
  script:
    - sh build/gitlab-ci autoconf

cmake-makefiles:
  stage: build
  script:
    - sh build/gitlab-ci cmake "Unix Makefiles" Release

cmake-ninja:
  stage: build
  script:
    - sh build/gitlab-ci cmake "Ninja" Debug