CI (Windows) #2708
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: CI (Windows) | |
on: | |
push: | |
schedule: | |
- cron: '0 15 * * *' | |
jobs: | |
test: | |
name: ${{ matrix.lisp }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
lisp: [sbcl-bin/2.3.9] | |
os: [windows-latest] | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: msys2/setup-msys2@v2 | |
with: | |
update: true | |
install: >- | |
git | |
- name: Prepare git | |
run: git config --global core.autocrlf input | |
shell: bash | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install Roswell | |
env: | |
LISP: ${{ matrix.lisp }} | |
run: | | |
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh | |
- name: Install Ultralisp | |
run: ros -e '(ql-dist:install-dist "http://dist.ultralisp.org/" :prompt nil)' | |
- name: Install Rove | |
run: | | |
ros install fukamachi/rove | |
- name: Install dependencies | |
run: ros install fukamachi/dexador | |
- name: Run tests | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
ros -s rove -e '(or (rove:run :qlot-tests) (uiop:quit -1))' |