-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (39 loc) · 1.01 KB
/
self-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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@main
with:
prebuilt-binary: true
- name: Run gosh
run: gosh -V