File tree Expand file tree Collapse file tree 1 file changed +99
-0
lines changed
Expand file tree Collapse file tree 1 file changed +99
-0
lines changed Original file line number Diff line number Diff line change 1+ # vim: set ts=2 sts=2 sw=2 expandtab :
2+ dist : xenial
3+ sudo : required
4+ language : bash
5+ services :
6+ - docker
7+
8+ # Trigger only on the travis branch
9+ # Remove the lines if every thing is ok.
10+ branches :
11+ only :
12+ - travis
13+
14+ before_install :
15+ - curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build
16+ - chmod +x docker-build
17+
18+ install :
19+ - sudo apt-get install -y python3-pip python3-setuptools
20+ - sudo pip3 install --upgrade pip
21+ - sudo pip install PyGithub
22+ - ./docker-build --name ${DISTRO} --config .travis.yml --install
23+
24+ script :
25+ - ./docker-build --name ${DISTRO} --verbose --config .travis.yml --build autotools
26+
27+ env :
28+ - DISTRO="archlinux/base"
29+ - DISTRO="debian:sid"
30+ - DISTRO="fedora:29"
31+ - DISTRO="ubuntu:18.10"
32+
33+ # #########################################################
34+ # THE FOLLOWING LINES IS USED BY docker-build
35+ # #########################################################
36+ requires :
37+ archlinux :
38+ # Useful URL: https://git.archlinux.org/svntogit/community.git/tree/mate-backgrounds
39+ - gcc
40+ - git
41+ - intltool
42+ - libcanberra
43+ - libmatemixer
44+ - make
45+ - mate-common
46+ - mate-desktop
47+ - which
48+
49+ debian :
50+ # Useful URL: https://github.com/mate-desktop/debian-packages
51+ # Useful URL: https://salsa.debian.org/debian-mate-team/mate-backgrounds
52+ - git
53+ - intltool
54+ - libcanberra-gtk3-dev
55+ - libglib2.0-dev
56+ - libgtk-3-dev
57+ - libmate-desktop-dev
58+ - libmatemixer-dev
59+ - libxml2-dev
60+ - make
61+ - mate-common
62+
63+ fedora :
64+ # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-backgrounds.git
65+ - gcc
66+ - desktop-file-utils
67+ - git
68+ - gtk3-devel
69+ - libmatemixer-devel
70+ - libxml2-devel
71+ - libcanberra-devel
72+ - mate-desktop-devel
73+ - make
74+ - mate-common
75+ - redhat-rpm-config
76+
77+ ubuntu :
78+ - git
79+ - intltool
80+ - libcanberra-gtk3-dev
81+ - libglib2.0-dev
82+ - libgtk-3-dev
83+ - libmate-desktop-dev
84+ - libmatemixer-dev
85+ - libxml2-dev
86+ - make
87+ - mate-common
88+
89+ variables :
90+ - CFLAGS="-Wall -Werror=format-security"
91+
92+ before_scripts :
93+ - if [ ${DISTRO_NAME} == "debian" ];then
94+ - curl -Ls -o debian.sh https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/debian.sh
95+ - bash ./debian.sh
96+ - fi
97+
98+ after_scripts :
99+ - make distcheck
You can’t perform that action at this time.
0 commit comments