summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 36638d7400d041e31f998b768518890c4936d395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
image: registry.fedoraproject.org/fedora:30

stages:
  - build

before_script:
  - dnf install -y gcc meson ninja-build "pkgconfig(gio-2.0)" "pkgconfig(gio-unix-2.0)" "pkgconfig(glib-2.0)"

build:
  stage: build
  script:
    - meson _build .
    - cd _build
    - ninja
    - meson test
    # Run it again! This previously did not work.
    - meson test
  artifacts:
    when: on_failure
    name: "libglnx-${CI_COMMIT_REF_NAME}-${CI_JOB_NAME}"
    paths:
      - "${CI_PROJECT_DIR}/_build/meson-logs"