From c9ccac8a88e3a91ac14e2a9b2c99a0a2c1a8a02e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Thu, 12 Jun 2014 20:31:50 +0200 Subject: [PATCH] Adding a .travis.yml file to use the travis-ci.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From wikipedia: Travis CI is a hosted, distributed continuous integration service used to build and test projects hosted at GitHub. Travis CI is configured by adding a file named .travis.yml, which is a YAML format text file, to the root directory of the GitHub repository. Travis CI automatically detects when a commit has been made and pushed to a GitHub repository that is using Travis CI, and each time this happens, it will try to build the project and run tests. This includes commits to all branches, not just to the master branch. When that process has completed, it will notify a developer in the way it has been configured to do so — for example, by sending an email containing the test results (showing success or failure), or by posting a message on an IRC channel. It can be configured to run the tests on a range of different machines, with different software installed (such as older versions of a programming language, to test for compatibility). --- .travis.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..6fa600358f --- /dev/null +++ b/.travis.yml @@ -0,0 +1,28 @@ +language: c + +compiler: + - clang + - gcc + +notifications: + email: false + +before_script: + - sudo apt-get install nasm + - sudo apt-get install libmad0-dev + - sudo apt-get install libgtk2.0-dev + - sudo apt-get install binutils-dev + - sudo apt-get install libasound-dev + - sudo apt-get install libpulse-dev + - sudo apt-get install libjack-dev + - sudo apt-get install libc6-dev + - sudo apt-get install libogg-dev + - sudo apt-get install libvorbis-dev + - sudo apt-get install libbz2-dev + - sudo apt-get install zlib1g-dev + - sudo apt-get install libjpeg8-dev + - sudo apt-get install libpng12-dev + - sudo apt-get install libxtst-dev libxrandr-dev + - sudo apt-get install libglu1-mesa-dev + - sudo apt-get install mesa-common-dev + - ./autogen.sh