summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-09-08 19:27:45 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-09-09 09:53:14 +0200
commita9b234fbcfb7fdbfe5b657394f2d591845b49441 (patch)
tree3f2cba5c5130e73099df1b23739df95ac87fdbe0 /.travis.yml
parent5fc444f6be25d29ba51fb142e09f9d843648095c (diff)
Add travis configuration
Use the imag freenode IRC channel to do notifications.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml35
1 files changed, 35 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..62fcfef
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,35 @@
+sudo: false
+os:
+ - linux
+
+dist:
+ - trusty
+
+language: rust
+
+rust:
+ - 1.15.0
+ - 1.16.0
+ - 1.17.0
+ - 1.18.0
+ - 1.19.0
+ - stable
+ - beta
+ - nightly
+
+matrix:
+ allow_failures:
+ - rust: nightly
+
+cache:
+ cargo: true
+
+notifications:
+ email:
+ on_success: never
+ irc:
+ channels:
+ - chat.freenode.net#imag
+ template:
+ - "%{repository_name} (%{branch} @ %{commit} by %{author}): %{result}"
+