jjmerelo/raku-test-ecosystem

By jjmerelo

Updated over 1 year ago

Raku container for testing new modules uploaded to the ecosystem

Image

1.2K

Docker container for testing META6.json in the ecosystem

Test container, based on Alpine, with OpenSSL and the rest of the modules needed for testing Raku ecosystem modules, basically Test::Meta. It probably does not make a lot of sense anywhere else, except if you want to also test correctness of the META6.json files in Raku distributions. Check it out here

Use in Travis

language:
  - minimal

services:
  - docker

install:
  - docker pull jjmerelo/raku-test-ecosystem
  - docker images # This is just for the show

script: docker run -e TRAVIS_COMMIT_RANGE="HEAD^1...HEAD" -t -v  $TRAVIS_BUILD_DIR:/test jjmerelo/raku-test-ecosystem

docker images is not needed, but it will show you the version it is going to use for building.

Docker Pull Command

docker pull jjmerelo/raku-test-ecosystem