summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 96653828d252bbb9b5f56fb42c6bede59c3c0044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
image: registry.gitlab.gnome.org/gnome/libsoup/master:v2

.build:
  tags:
    # We need runners supporting IPv6:
    # https://gitlab.gnome.org/Infrastructure/GitLab/issues/313
    - ipv6

fedora-meson-x86_64:
  extends: .build
  script:
    - meson _build
    - ninja -C _build
    - ninja -C _build test
  artifacts:
    paths:
      - "_build/meson-logs"
    when: on_failure