From 69fa1816bbab61507bd60efbef48418d7b6cf756 Mon Sep 17 00:00:00 2001 From: Levente Kurusa Date: Sun, 2 Sep 2018 15:35:05 +0200 Subject: [PATCH] ci: add travis support For now, do not run tests as they require sudo privileges. In the near future, a plan will be devised to automate testing. Signed-off-by: Levente Kurusa --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..20eb418 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: rust +rust: + - stable + - beta + - nightly +matrix: + allow_failures: + - rust: nightly + fast_finish: true +script: + - cargo build --verbose --all