File tree Expand file tree Collapse file tree 1 file changed +86
-0
lines changed
Expand file tree Collapse file tree 1 file changed +86
-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/python-caja
39+ - caja
40+ - gcc
41+ - git
42+ - make
43+ - mate-common
44+ - python-gobject
45+ - which
46+
47+ debian :
48+ # Useful URL: https://github.com/mate-desktop/debian-packages
49+ # Useful URL: https://salsa.debian.org/debian-mate-team/python-caja
50+ - git
51+ - gtk-doc-tools
52+ - libcaja-extension-dev
53+ - libgirepository1.0-dev
54+ - make
55+ - mate-common
56+ - python3-dev
57+ - python-gi-dev
58+ - quilt
59+
60+ fedora :
61+ # Useful URL: https://src.fedoraproject.org/cgit/rpms/python-caja.git
62+ - caja-devel
63+ - gcc
64+ - git
65+ - make
66+ - mate-common
67+ - pygobject3-devel
68+ - python3-devel
69+ - redhat-rpm-config
70+
71+ ubuntu :
72+ - git
73+ - gtk-doc-tools
74+ - libcaja-extension-dev
75+ - libgirepository1.0-dev
76+ - make
77+ - mate-common
78+ - python3-dev
79+ - python-gi-dev
80+ - quilt
81+
82+ variables :
83+ - CFLAGS="-Wall -Werror=format-security"
84+
85+ after_scripts :
86+ - make distcheck
You can’t perform that action at this time.
0 commit comments