From 351998a784aa05a84d91c4066b0ed6c51e1ffe2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Fri, 18 Oct 2013 11:47:07 +0200 Subject: [PATCH] Add travis.yml. --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..59d4db6b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +before_install: + - yes | sudo add-apt-repository ppa:hansjorg/rust + - sudo apt-get update +install: + - sudo apt-get install rust-nightly +script: + - make + - make test + - make bench