Fix Windows Rakudo Star Installation #835
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Exercises | |
on: | |
- push | |
- pull_request | |
jobs: | |
job: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ['ubuntu-22.04', 'macos-12', 'windows-2022'] | |
name: Rakudo Star on ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Install Rakudo Star with msiexec | |
if: runner.os == 'Windows' | |
run: > | |
Invoke-WebRequest https://rakudo.org/latest/star/win -OutFile C:\rakudo-star.msi; | |
msiexec /a /jm C:\rakudo-star.msi; | |
echo "C:\rakudo\bin;C:\rakudo\share\perl6\site\bin" | |
| Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append; | |
dir C:\; | |
- name: Install Rakudo Star with brew | |
if: runner.os == 'macOS' | |
run: brew install rakudo-star | |
- name: Rakudo Star tests with prove6 | |
if: runner.os != 'Linux' | |
run: prove6 --jobs 2 (Get-Item -Path exercises/practice/*/.meta/solutions/) | |
shell: pwsh | |
- name: Rakudo Star tests with docker run | |
if: runner.os == 'Linux' | |
uses: docker://rakudo-star:latest | |
with: | |
args: /bin/bash -c "prove6 --jobs 2 /github/workspace/exercises/practice/*/.meta/solutions/" |