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

stages:
  - build

build-job:
  stage: build
  script:
    - meson --prefix /usr --libdir /usr/lib64 --buildtype debug --werror -Dcairo=true _build .
    - cd _build
    - ninja
    - meson test
  except:
    - tags
  artifacts:
    when: on_failure
    name: "glib-_${CI_COMMIT_REF_NAME}"
    paths:
      - "${CI_PROJECT_DIR}/_build/meson-logs"