From 3219460666a7491d404e7d50afd8fc933a54dc55 Mon Sep 17 00:00:00 2001 From: Paul Lietar Date: Wed, 30 Dec 2015 20:11:29 +0100 Subject: [PATCH] Add travis build file. --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..ac353d33 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: rust +rust: + - nightly + +addons: + apt: + packages: + - protobuf-compiler + - portaudio19-dev + +before_install: + - export PATH=$HOME/.cargo/bin:$PATH +install: + - cargo install --git https://github.com/stepancheg/rust-protobuf --rev 921c69b protobuf +