summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: e4f2ee3880922d2d1159e45482a208dc64d4b5db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
image: debian:stable

before_script:
  - echo 'deb-src http://deb.debian.org/debian stable main' >> /etc/apt/sources.list
  - apt update
  - apt build-dep --yes poppler
  - apt install --yes cmake ninja-build

build:
  stage: build
  script:
    - mkdir build && cd build
    - cmake -G Ninja ..
    - ninja
    - ctest
  cache:
    paths:
      - build/