-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
51 lines (49 loc) · 1.25 KB
/
.gitlab-ci.yml
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
build-ubuntu-gtk2:
image: ubuntu:rolling
before_script:
- apt-get update
- apt-get install -q -y --no-install-recommends
build-essential
autoconf
autopoint
automake
gettext
gcc
libgtk2.0-dev
libgmime-2.6-dev
libgtkspell-dev
libenchant-dev
libnotify-dev
libgnome-keyring-dev
libgnutls28-dev
yelp-tools
script:
- ./autogen.sh --without-gtk3 --with-gnutls --with-dbus --with-gmime-crypto --with-gtkspell --enable-libnotify --enable-gkr --enable-manual
- make
- make check
build-ubuntu-gtk3:
image: ubuntu:rolling
before_script:
- apt-get update
- apt-get install -q -y --no-install-recommends
build-essential
autoconf
autopoint
automake
gettext
gcc
libglib2.0-dev-bin
libdbus-1-dev
libgcr-3-dev
libgmime-2.6-dev
libgnutls28-dev
libgtk-3-dev
libgtkspell-dev
libnotify-dev
libsecret-1-dev
libgtkspell3-3-dev
yelp-tools
script:
- ./autogen.sh --with-gtk3 --with-gnutls --with-dbus --with-gmime-crypto --with-gtkspell --enable-libnotify --enable-gkr --enable-manual
- make
- make check