From 9cd78a619149fca8576dfa57b797ca11204ba4ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20F=C3=A6r=C3=B8y?= Date: Sat, 22 Dec 2018 21:40:44 +0100 Subject: [PATCH] Add support for Travis. --- .travis.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..2fe7d13 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +language: go + +go: + - "1.3.x" # Used in Debian Jessie (oldstable). + - "1.7.x" # Used in Debian Stretch (stable). + - "1.10.x" # Used in Debian Buster (testing). + - "1.11.x" + - master + +matrix: + allow_failures: + - go: master + +notifications: + irc: + channels: + - "irc.oftc.net#tor-ci" + template: + - "%{repository} %{branch} %{commit} - %{author}: %{commit_subject}" + - "Build #%{build_number} %{result}. Details: %{build_url}" + on_success: change + on_failure: change