blob: 584010f81eb43e7fd7a3f6f97f9418c97317e6d3 (
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:v3
.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 -Dauto_features=enabled
- ninja -C _build
- ninja -C _build test
artifacts:
paths:
- "_build/meson-logs"
when: on_failure
|