blob: 9bdbc7aeb0ee19a51c4a55b7180c60868baae0bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
stages:
- build
fedora-x86_64:
stage: build
image: registry.gitlab.gnome.org/gnome/gobject-introspection:v1
script:
- meson --prefix /usr --libdir /usr/lib64 --buildtype debug -Dcairo=true _build .
- cd _build
- ninja
- meson test --print-errorlogs --suite=gobject-introspection --no-suite=glib
except:
- tags
artifacts:
when: on_failure
name: "gi-_${CI_COMMIT_REF_NAME}"
paths:
- "${CI_PROJECT_DIR}/_build/meson-logs"
|