Help language development. Donate to The Perl Foundation
This distribution contains a number of GitHub workflows that can be used for testing Raku (Perl6) modules. The Raku code under lib
and t
is just dummy code that acts as a test harness for the workflows. Look in .github/workflows
for the real deliverables from this dstribution.
The workflows vary in the amount of control they have over the version of Raku used and the OS they run on. The table below summarised the feature set available in each.
Workflow File | OS Supported | Raku Origin | Uses Rakudo Star | Control Raku Version Used | Option To Run Latest Raku | GitHub Cache Support |
---|---|---|---|---|---|---|
wf-caching.yml | Linux, MacOS & Windows | Rakudo Downloads | No | Yes | Yes | Yes |
wf-linux-docker.yml | Linux | Docker | No | Yes | Yes | No |
wf-linux-star-docker.yml | Linux | Rakudo Star Official Docker | Yes | Yes | Yes | No |
wf-macos-star.yml | MacOS | Homebrew | Yes | No | No | No |
wf-windows-star.yml | Windows | Chocolatey | Yes | No | No | No |
For casual testing, one of the workflows that use Rakudo Star is a good starting point. They usually have a relatively recent build of Raku, plus they come with a set of commonly used modules. Less chance of needing any prerequisite modules to be installed.
All the workflows use the zef Module Manager to automatically install Raku depencencies. If you are using a workflow that uses Rakudo Star there may be no need to install any. Rakudo Star may already include them.
If you have a use-case where your module dependencies are not present in a Rakudo Star distribution, and you are not using workflow caching, those dependencies will get resolved by zef every time the workflow runs.
At the time of writing, installing Raku module dependencies can take a long time to run -- 5 minutes is typical. This is where a caching workflow can help. The wf-caching.yml
workflow has been setup to use a GitHub cache to store all the modules that zef installs.
This means that the first time you run the workflow you will take the 5 minute hit, but the subsequent runs should be completed in seconds.
GitHub will only retain the cache for about a week if it isn't accessed.
Suggestions/patches/comments are welcomed at Raku-GitHub-WorkFlows