-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (42 loc) · 1.51 KB
/
ci-workflow-chicken.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
46
47
48
49
50
51
52
53
54
55
name: CI Workflow Scheme Chicken
on: [push, pull_request]
jobs:
chicken_build_linux:
runs-on: ubuntu-latest
if: ${{ false }} # Chicken 5 is not supported
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Install Chicken
run: |
sudo apt-get update
sudo apt-get -y install chicken-bin
- name: Test
run: csi -r5rs-syntax -q -b -I test ./test/assert-chicken-test.scm
- name: Test the example
run: csi -r5rs-syntax -q -b -I sample ./sample/sample-unit-test.scm
chicken_build_windows_4:
runs-on: windows-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Install Chicken
run: |
choco install msys2-installer --version 20161025.0.0 --verbose
choco install chicken --version 4.13.0 --verbose
- name: Test
run: C:\chicken\bin\csi -r5rs-syntax -q -b -I test test\assert-chicken-test.scm
- name: Test the example
run: C:\chicken\bin\csi -r5rs-syntax -q -b -I sample sample\sample-unit-test.scm
chicken_build_windows:
runs-on: windows-latest
if: ${{ false }} # Chicken 5 is not supported
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Install Chicken
run: choco install chicken
- name: Test
run: C:\tools\chicken\bin\csi -r5rs-syntax -q -b -I test test\assert-chicken-test.scm
- name: Test the example
run: C:\tools\chicken\bin\csi -r5rs-syntax -q -b -I sample sample\sample-unit-test.scm