aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorRémy Léone <remy.leone@gmail.com>2013-10-17 15:10:18 +0200
committerDaniel Stenberg <daniel@haxx.se>2013-10-21 23:15:16 +0200
commitbe31924f8c9000ba71c64cd52392192c4416c7fc (patch)
tree49ab47c670c0f9ecbaa8dd38500042963f29c39d /.travis.yml
parentf70b2c77f4889316acb75d41e97a7f28c9a6a995 (diff)
downloadgnurl-be31924f8c9000ba71c64cd52392192c4416c7fc.tar.gz
gnurl-be31924f8c9000ba71c64cd52392192c4416c7fc.tar.bz2
gnurl-be31924f8c9000ba71c64cd52392192c4416c7fc.zip
Adding a .travis.yml file to use the travis-ci.org
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).
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000000000..b46478303
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,11 @@
+language: c
+
+before_script:
+ - ./buildconf
+
+compiler:
+ - clang
+ - gcc
+
+notifications:
+ email: false