Skip to content

Commit 0401198

Browse files
committed
Same for Chicken Scheme.
1 parent 40bec53 commit 0401198

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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

.github/workflows/ci-workflow-gambit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI Workflow Scheme Gambit
33
on: [push, pull_request]
44

55
jobs:
6-
build_linux:
6+
gambit_build_linux:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Check out the repo
@@ -20,7 +20,7 @@ jobs:
2020
- name: Test the example
2121
run: gsi ./sample/sample-unit-test.scm
2222

23-
build_windows:
23+
gambit_build_windows:
2424
runs-on: windows-latest
2525
steps:
2626
- name: Check out the repo

0 commit comments

Comments
 (0)