From: Graham Knop Date: Sun, 1 Jun 2014 04:44:43 +0000 (-0400) Subject: add travis config X-Git-Tag: v1.005006~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2Fstrictures.git;a=commitdiff_plain;h=c6b0ba513f9261178a1b3870488be2fe1817cd4b;hp=8c8a0b9a00083cf79d1ee44930ab0b4a1f8beaa9 add travis config --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b26039b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,33 @@ +language: perl +perl: + - "5.8" + - "5.10" + - "5.12" + - "5.14" + - "5.16" + - "5.18" + - "5.20" + - "dev" +matrix: + include: + - perl: 5.8.1 + env: AUTHOR_TESTING=0 + - perl: 5.18 + env: COVERAGE=1 +sudo: false +before_install: + - eval $(curl https://travis-perl.github.io/init) --auto +branches: + except: + - /^wip\// + - /^blocked/ +notifications: + email: false + irc: + channels: + - "irc.perl.org#moo-smoke" + template: + - "%{branch}#%{build_number} by %{author}: %{message} (%{build_url})" + on_success: change + on_failure: always + skip_join: true