diff options
author | Wu Xiaotian <[email protected]> | 2019-02-22 13:46:20 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-02-22 12:31:25 +0100 |
commit | c5a6aa9c56e89cb22f31728db42006df4d1003cb (patch) | |
tree | 459f360a0d917603581f5b267c90cd7f2e2fc1f4 | |
parent | 696ebd845eebe51f53a6e1836e902ba1b4255c05 (diff) | |
download | mate-user-guide-c5a6aa9c56e89cb22f31728db42006df4d1003cb.tar.bz2 mate-user-guide-c5a6aa9c56e89cb22f31728db42006df4d1003cb.tar.xz |
Initialize Travis CI support
-rw-r--r-- | .travis.yml | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..ed6cde1 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,81 @@ +# 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://git.archlinux.org/svntogit/community.git/tree/mate-user-guide + - gcc + - git + - intltool + - itstool + - make + - mate-common + - which + - yelp-tools + + debian: + # Useful URL: https://github.com/mate-desktop/debian-packages + # Useful URL: https://salsa.debian.org/debian-mate-team/mate-user-guide + - gettext + - git + - intltool + - libglib2.0-dev + - make + - mate-common + - yelp-tools + + fedora: + # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-user-guide.git + - desktop-file-utils + - gcc + - git + - make + - mate-common + - redhat-rpm-config + + ubuntu: + - gettext + - git + - intltool + - libglib2.0-dev + - make + - mate-common + - yelp-tools + +variables: + - CFLAGS="-Wall -Werror=format-security" + +after_scripts: + - make distcheck |