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+ before_install :
9+ - curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build
10+ - chmod +x docker-build
11+
12+ install :
13+ - sudo apt-get install -y python3-pip python3-setuptools
14+ - sudo pip3 install --upgrade pip
15+ - sudo pip install PyGithub
16+ - ./docker-build --name ${DISTRO} --config .travis.yml --install
17+
18+ script :
19+ - ./docker-build --name ${DISTRO} --verbose --config .travis.yml --build autotools
20+
21+ env :
22+ - DISTRO="archlinux/base"
23+ - DISTRO="debian:sid"
24+ - DISTRO="fedora:29"
25+ - DISTRO="ubuntu:18.10"
26+
27+ # #########################################################
28+ # THE FOLLOWING LINES IS USED BY docker-build
29+ # #########################################################
30+ requires :
31+ archlinux :
32+ # Useful URL: https://git.archlinux.org/svntogit/community.git/tree/python-caja
33+ - caja
34+ - gcc
35+ - git
36+ - make
37+ - mate-common
38+ - python-gobject
39+ - python2
40+ - which
41+
42+ debian :
43+ # Useful URL: https://github.com/mate-desktop/debian-packages
44+ # Useful URL: https://salsa.debian.org/debian-mate-team/python-caja
45+ - git
46+ - gtk-doc-tools
47+ - libcaja-extension-dev
48+ - libgirepository1.0-dev
49+ - make
50+ - mate-common
51+ - python2-dev
52+ - python-gi-dev
53+ - quilt
54+
55+ fedora :
56+ # Useful URL: https://src.fedoraproject.org/cgit/rpms/python-caja.git
57+ - caja-devel
58+ - gcc
59+ - git
60+ - make
61+ - mate-common
62+ - pygobject3-devel
63+ - python2-devel
64+ - redhat-rpm-config
65+
66+ ubuntu :
67+ - git
68+ - gtk-doc-tools
69+ - libcaja-extension-dev
70+ - libgirepository1.0-dev
71+ - make
72+ - mate-common
73+ - python2-dev
74+ - python-gi-dev
75+ - quilt
76+
77+ variables :
78+ - CFLAGS="-Wall -Werror=format-security"
79+ - PYTHON=python2
80+
81+ configures :
82+ autotools :
83+ - --enable-gtk-doc
84+
85+ after_scripts :
86+ - make distcheck
You can’t perform that action at this time.
0 commit comments