Aarggh, looking at different branch #16
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: Run setup-gauche action | |
on: [ push ] | |
# We don't use cross-matrix for platform and gauche-version, for | |
# we want to test specifically setup-gauche _without_ parameters | |
# and _with_ parameters. | |
jobs: | |
# test-setup-latest: | |
# strategy: | |
# matrix: | |
# platform: [ubuntu-latest, macos-latest] | |
# runs-on: ${{ matrix.platform }} | |
# steps: | |
# - uses: shirok/setup-gauche@main | |
# - name: Run gosh | |
# run: gosh -V | |
# test-setup-snapshot: | |
# strategy: | |
# matrix: | |
# platform: [ubuntu-latest, macos-latest] | |
# runs-on: ${{ matrix.platform }} | |
# steps: | |
# - uses: shirok/setup-gauche@main | |
# with: | |
# gauche-version: 'snapshot' | |
# test-gauche: true | |
# configure-options: '--with-slib=/opt' | |
# - name: Run gosh | |
# run: gosh -V | |
test-setup-binary: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: shirok/setup-gauche@test | |
with: | |
prebuilt-binary: true | |
gauche-version: 0.9.14 | |
- name: Run gosh | |
run: gosh -V |