File tree Expand file tree Collapse file tree 2 files changed +41
-2
lines changed Expand file tree Collapse file tree 2 files changed +41
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : CI Workflow Scheme Chicken
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ chicken_build_linux :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Check out the repo
10
+ uses : actions/checkout@v3
11
+
12
+ - name : Install Chicken
13
+ run : |
14
+ sudo apt-get update
15
+ sudo apt-cache policy chicken-bin
16
+ sudo apt-get -y install chicken-bin=4.13.0
17
+
18
+ - name : Test
19
+ run : csi -r5rs-syntax -q -b -I test ./test/assert-chicken-test.scm
20
+
21
+ - name : Test the example
22
+ run : csi -r5rs-syntax -q -b -I sample ./sample/sample-unit-test.scm
23
+
24
+ chicken_build_windows :
25
+ runs-on : windows-latest
26
+ steps :
27
+ - name : Check out the repo
28
+ uses : actions/checkout@v3
29
+
30
+ - name : Install Chicken
31
+ run : choco install chicken --version 4.13.0
32
+
33
+ - name : Test
34
+ run : C:\chicken\bin\csi -r5rs-syntax -q -b -I test test\assert-chicken-test.scm
35
+ # run: C:\tools\chicken\bin\csi -r5rs-syntax -q -b -I test test\assert-chicken-test.scm
36
+
37
+ - name : Test the example
38
+ run : C:\chicken\bin\csi -r5rs-syntax -q -b -I sample sample\sample-unit-test.scm
39
+ # run: C:\tools\chicken\bin\csi -r5rs-syntax -q -b -I sample sample\sample-unit-test.scm
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: CI Workflow Scheme Gambit
3
3
on : [push, pull_request]
4
4
5
5
jobs :
6
- build_linux :
6
+ gambit_build_linux :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
9
- name : Check out the repo
20
20
- name : Test the example
21
21
run : gsi ./sample/sample-unit-test.scm
22
22
23
- build_windows :
23
+ gambit_build_windows :
24
24
runs-on : windows-latest
25
25
steps :
26
26
- name : Check out the repo
You can’t perform that action at this time.
0 commit comments