diff options
author | Wu Xiaotian <[email protected]> | 2019-02-18 13:43:30 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-02-18 09:59:37 +0100 |
commit | 60bbb51621e0752854b116c11a2d512a07a91050 (patch) | |
tree | 45a4d638f8080cdfe604eb31bcf2283960fbea92 /.travis.yml | |
parent | 05e1e93acb86fc0e28f69acfd0cced773b140ff6 (diff) | |
download | caja-dropbox-60bbb51621e0752854b116c11a2d512a07a91050.tar.bz2 caja-dropbox-60bbb51621e0752854b116c11a2d512a07a91050.tar.xz |
Initialize Travis CI support
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f4fa11a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,84 @@ +# vim: set ts=2 sts=2 sw=2 expandtab : +dist: xenial +sudo: required +language: bash +services: + - docker + +# Trigger only on the travis branch +# Remove the lines if every thing is ok. +branches: + only: + - travis + +before_install: + - curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build + - chmod +x docker-build + +install: + - sudo apt-get install -y python3-pip python3-setuptools + - sudo pip3 install --upgrade pip + - sudo pip install PyGithub + - ./docker-build --name ${DISTRO} --config .travis.yml --install + +script: + - ./docker-build --name ${DISTRO} --verbose --config .travis.yml --build autotools + +env: + - DISTRO="archlinux/base" + - DISTRO="debian:sid" + - DISTRO="fedora:29" + - DISTRO="ubuntu:18.10" + +########################################################## +# THE FOLLOWING LINES IS USED BY docker-build +########################################################## +requires: + archlinux: + # Useful URL: https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=caja-dropbox + - caja + - gcc + - git + - glib2 + - make + - mate-common + - python-docutils + - python-gobject + - which + + debian: + # Useful URL: https://github.com/mate-desktop/debian-packages + # Useful URL: https://salsa.debian.org/debian-mate-team/caja-dropbox + - git + - libcaja-extension-dev + - libglib2.0-dev + - make + - mate-common + - python3-docutils + - python3-gi + + fedora: + # Useful URL: https://src.fedoraproject.org/cgit/rpms/caja-dropbox.git + - gcc + - git + - make + - redhat-rpm-config + - caja-devel + - python3-docutils + - python3-gobject + - mate-common + + ubuntu: + - git + - libcaja-extension-dev + - libglib2.0-dev + - make + - mate-common + - python3-docutils + - python3-gi + +variables: + - CFLAGS="-Wall -Werror=format-security" + +after_scripts: + - make distcheck |