aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2018-03-28 14:18:06 +0200
committerPatrick Spek <p.spek@tyil.nl>2018-03-28 14:18:06 +0200
commite3e09621c15dfcd6ad66c2730e62ca5e634ddb44 (patch)
tree5bd22236ce0607e9c91de1b0c490ad39e6e4ca4b
parent609447bfd8d525e8b28a5de8b8fca040347e5f2b (diff)
Update Travis config to use rakudo-pkg
-rw-r--r--.travis.yml22
1 files changed, 15 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index fa5813f..768fb70 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,15 +1,23 @@
-language: perl6
+language: generic
-perl6:
- - latest
- - "2018.02"
- - "2018.01"
+env:
+ global:
+ - PATH=/opt/rakudo-pkg/bin:$PATH
+ matrix:
+ - VERSION=2018.03-01
+ - VERSION=2018.02.1-01 TAG=v2018.02.1
os:
- linux
+before_install:
+ - cd $(mktemp -d)
+ - wget "https://github.com/nxadm/rakudo-pkg/releases/download/${TAG:-v${VERSION}}/rakudo-pkg-Ubuntu14.04_${VERSION}_amd64.deb" && sudo dpkg -i *.deb
+ - cd -
+
install:
- - rakudobrew build zef
- - zef install --depsonly .
+ - zef install --deps-only .
script: AUTHOR_TESTING=1 prove -v -e "perl6 -Ilib" t/
+
+# vim: et ts=2 sw=2