This is an automated email from the git hooks/post-receive script. wrar-guest pushed a commit to branch master in repository xboxdrv.
commit 14061cf122f0768796e561febb63756ff7605bb1 Author: Ingo Ruhnke <[email protected]> Date: Sat Jun 20 11:04:25 2015 +0200 Added .travis.yml --- .travis.yml | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d92fcee --- /dev/null +++ b/.travis.yml @@ -0,0 +1,44 @@ +# Xbox/Xbox360 USB Gamepad Userspace Driver +# Copyright (C) 2008 Ingo Ruhnke <[email protected]> +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +# Build file for https://travis-ci.org/ +# +# Configuration manual: +# http://docs.travis-ci.com/user/build-configuration/ + +language: cpp + +compiler: + - gcc + - clang + +matrix: + fast_finish: true + +env: + matrix: + - BUILD_TYPE="Debug" + - BUILD_TYPE="Release" + +before_install: + - sudo apt-get update -qq + - sudo apt-get install build-essential scons g++ libboost-dev scons pkg-config libusb-1.0-0-dev libx11-dev libudev-dev x11proto-core-dev libdbus-glib-1-dev + +script: + - git clean -f + - make && make install + +# EOF # -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/xboxdrv.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

