Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
language: perl
perl:
- '5.20'
env:
- BACKEND=moar
- BACKEND=jvm
matrix:
allow_failures:
- env: BACKEND=jvm
before_install:
- git config --global user.email $HOSTNAME":not-for-mail@travis-ci.org"
# helpers $(test-jobs) and $(test-files)
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init
- git clone https://github.com/tadzik/rakudobrew ~/.rakudobrew
- export PATH=~/.rakudobrew/bin:$PATH
- rakudobrew build $BACKEND
- perl6 -v
install:
# must do *something* in the install phase
- rakudobrew build-panda
script:
# Pull in the dependencies before running tests
- panda installdeps .
# tests that module passes tests *before* compile
- prove -v -s -j$(test-jobs) -e "perl6 --ll-exception -Ilib" $(test-files)
# runs tests again, but catches some heisenbugs (mostly with precompiled modules)
- PANDA_SUBMIT_TESTREPORTS=1 panda install .
after_success:
- panda list --installed --verbose