File tree 2 files changed +23
-22
lines changed
2 files changed +23
-22
lines changed Original file line number Diff line number Diff line change @@ -8,29 +8,29 @@ on: [ push ]
8
8
# and _with_ parameters.
9
9
10
10
jobs :
11
- test-setup-latest :
12
- strategy :
13
- matrix :
14
- platform : [ubuntu-latest, macos-latest]
15
- runs-on : ${{ matrix.platform }}
16
- steps :
17
- - uses : shirok/setup-gauche@main
18
- - name : Run gosh
19
- run : gosh -V
11
+ # test-setup-latest:
12
+ # strategy:
13
+ # matrix:
14
+ # platform: [ubuntu-latest, macos-latest]
15
+ # runs-on: ${{ matrix.platform }}
16
+ # steps:
17
+ # - uses: shirok/setup-gauche@main
18
+ # - name: Run gosh
19
+ # run: gosh -V
20
20
21
- test-setup-snapshot :
22
- strategy :
23
- matrix :
24
- platform : [ubuntu-latest, macos-latest]
25
- runs-on : ${{ matrix.platform }}
26
- steps :
27
- - uses : shirok/setup-gauche@main
28
- with :
29
- gauche-version : ' snapshot'
30
- test-gauche : true
31
- configure-options : ' --with-slib=/opt'
32
- - name : Run gosh
33
- run : gosh -V
21
+ # test-setup-snapshot:
22
+ # strategy:
23
+ # matrix:
24
+ # platform: [ubuntu-latest, macos-latest]
25
+ # runs-on: ${{ matrix.platform }}
26
+ # steps:
27
+ # - uses: shirok/setup-gauche@main
28
+ # with:
29
+ # gauche-version: 'snapshot'
30
+ # test-gauche: true
31
+ # configure-options: '--with-slib=/opt'
32
+ # - name: Run gosh
33
+ # run: gosh -V
34
34
35
35
test-setup-binary :
36
36
strategy :
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ if [ "$binary" = 'true' ]; then
49
49
echo " Prebuilt binary is not available on this platform: $platform "
50
50
exit 1 ;;
51
51
esac
52
+ echo " Instaling $binary_url /$binary_tarball "
52
53
curl -L -f -o /tmp/$binary_tarball $binary_url /$binary_tarball
53
54
sudo tar x -C / -z -v -f /tmp/$binary_tarball
54
55
else
You can’t perform that action at this time.
0 commit comments