[Rprotobuf-commits] r928 - /
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Wed Dec 3 23:09:22 CET 2014
Author: jeroenooms
Date: 2014-12-03 23:09:22 +0100 (Wed, 03 Dec 2014)
New Revision: 928
Added:
.travis.yml
Log:
Add travis file.
Added: .travis.yml
===================================================================
--- .travis.yml (rev 0)
+++ .travis.yml 2014-12-03 22:09:22 UTC (rev 928)
@@ -0,0 +1,24 @@
+# Sample .travis.yml for R projects.
+#
+# See README.md for instructions, or for more configuration options,
+# see the wiki:
+# https://github.com/craigcitro/r-travis/wiki
+
+language: c
+
+before_install:
+ - sudo apt-get install libprotobuf-dev libprotoc-dev
+ - curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
+ - chmod 755 ./travis-tool.sh
+ - ./travis-tool.sh bootstrap
+install:
+ - ./travis-tool.sh install_deps
+script: ./travis-tool.sh run_tests
+
+after_failure:
+ - ./travis-tool.sh dump_logs
+
+notifications:
+ email:
+ on_success: change
+ on_failure: change
More information about the Rprotobuf-commits
mailing list