blob: 3afbb3e85b037ea3b1f5a32fb95a2c6437a539a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
stages:
- build
- deploy
image: registry.gitlab.gnome.org/gnome/gobject-introspection:v4
cache:
paths:
- _ccache/
fedora-x86_64-meson:
stage: build
variables:
CCACHE_BASEDIR: "${CI_PROJECT_DIR}"
CCACHE_DIR: "${CI_PROJECT_DIR}/_ccache"
CFLAGS: "-Werror"
script:
- meson --prefix /usr --libdir /usr/lib64 --buildtype debug -Ddoctool=true -Dgtk_doc=true -Dcairo=true -Dpython=python3 _build .
- cd _build
- ninja
- meson test --print-errorlogs --suite=gobject-introspection --no-suite=glib
- ninja gi-doc
- cd ..
- mkdir -p public
- mv _build/docs/reference/html/ public/girepository/
- python3 -m pip install --user flake8
- python3 -m flake8 --count
except:
- tags
artifacts:
when: always
name: "gi-_${CI_COMMIT_REF_NAME}"
paths:
- "${CI_PROJECT_DIR}/_build/meson-logs"
- public
fedora-x86_64-autotools:
stage: build
variables:
CCACHE_BASEDIR: "${CI_PROJECT_DIR}"
CCACHE_DIR: "${CI_PROJECT_DIR}/_ccache"
CFLAGS: "-Werror"
script:
- sed -i 's|\[glib-2\.0 >= [0-9.]*\]|[glib-2.0 >= 1.0]|' configure.ac
- mkdir _build
- cd _build
- ../autogen.sh --with-python=python3 --enable-gtk-doc --enable-doctool
- make -j4
- make check
- python3 -m pip install --user flake8
- make check.quality
artifacts:
when: on_failure
name: "gi-_${CI_COMMIT_REF_NAME}"
paths:
- "_build/*.log"
- "_build/*/*.log"
- "_build/*/*/*.log"
- "_build/*/*/*/*.log"
msys2-mingw32-meson:
stage: build
tags:
- win32
variables:
MSYSTEM: "MINGW32"
CHERE_INVOKING: "yes"
script:
- C:\msys64\usr\bin\pacman --noconfirm -Syyuu --ask 20
- C:\msys64\usr\bin\bash -lc "bash -x ./.gitlab-ci/test-msys2-meson.sh"
artifacts:
when: on_failure
name: "gi-_%CI_COMMIT_REF_NAME%"
paths:
- _build/meson-logs
msys2-mingw32-autotools:
stage: build
tags:
- win32
variables:
MSYSTEM: "MINGW32"
CHERE_INVOKING: "yes"
script:
- C:\msys64\usr\bin\pacman --noconfirm -Syyuu --ask 20
- C:\msys64\usr\bin\bash -lc "bash -x ./.gitlab-ci/test-msys2-autotools.sh"
artifacts:
when: on_failure
name: "gi-_%CI_COMMIT_REF_NAME%"
paths:
- _build/meson-logs
vs2017-x64-meson:
stage: build
tags:
- win32
script:
- .gitlab-ci/test-msvc.bat
artifacts:
when: on_failure
name: "gi-_%CI_COMMIT_REF_NAME%"
paths:
- _build/meson-logs
pages:
stage: deploy
dependencies:
- fedora-x86_64-meson
script:
- echo
artifacts:
paths:
- public
only:
- master
|