Add more implementations #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Current Practice | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ evaluator ] | |
pull_request: | |
jobs: | |
test: | |
name: Update Current Practice | |
defaults: | |
run: | |
shell: bash -l {0} | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/yitzchak/archlinux-cl:latest | |
steps: | |
- name: Checkout WSCL | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Setup Lisp Environment | |
run: | | |
make-rc | |
asdf-add | |
- name: Update Current Practice | |
run: | | |
for lisp in abcl acl ccl clasp cmucl ecl mkcl sbcl; do | |
lisp -i $lisp -e "(ql:quickload :wscl-evaluator)" -e "(wscl-evaluator:eval-issues)" | |
done | |
- name: diff | |
run: | | |
git config --global --add safe.directory $(realpath .) | |
git diff --output=diff.patch | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: diff | |
path: diff.patch |