Skip to content

Commit

Permalink
Same for Chicken Scheme.
Browse files Browse the repository at this point in the history
  • Loading branch information
codecop committed Aug 1, 2023
1 parent 40bec53 commit 0401198
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/ci-workflow-chicken.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: CI Workflow Scheme Chicken

on: [push, pull_request]

jobs:
chicken_build_linux:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3

- name: Install Chicken
run: |
sudo apt-get update
sudo apt-cache policy chicken-bin
sudo apt-get -y install chicken-bin=4.13.0
- 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:
runs-on: windows-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3

- name: Install Chicken
run: choco install chicken --version 4.13.0

- name: Test
run: C:\chicken\bin\csi -r5rs-syntax -q -b -I test test\assert-chicken-test.scm
# run: C:\tools\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
# run: C:\tools\chicken\bin\csi -r5rs-syntax -q -b -I sample sample\sample-unit-test.scm
4 changes: 2 additions & 2 deletions .github/workflows/ci-workflow-gambit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI Workflow Scheme Gambit
on: [push, pull_request]

jobs:
build_linux:
gambit_build_linux:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
Expand All @@ -20,7 +20,7 @@ jobs:
- name: Test the example
run: gsi ./sample/sample-unit-test.scm

build_windows:
gambit_build_windows:
runs-on: windows-latest
steps:
- name: Check out the repo
Expand Down

0 comments on commit 0401198

Please sign in to comment.