Skip to content

CI (Windows)

CI (Windows) #1916

Workflow file for this run

name: CI (Windows)
on:
push:
pull_request:
schedule:
- cron: '0 15 * * *'
jobs:
test:
name: ${{ matrix.lisp }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
lisp: [sbcl-bin]
os: [windows-latest]
steps:
- uses: actions/checkout@v1
- name: Install Roswell
env:
LISP: ${{ matrix.lisp }}
ROSWELL_INSTALL_DIR: /c/roswell
shell: bash
run: |
PATH="/c/roswell/bin:$PATH"
curl -L https://raw.githubusercontent.com/fukamachi/roswell/windows-source-registry-settings/scripts/install-for-ci.sh | sh
- name: Install Ultralisp
shell: bash
run: /c/roswell/bin/ros -e '(ql-dist:install-dist "http://dist.ultralisp.org/" :prompt nil)'
- name: Install Rove
shell: bash
run: /c/roswell/bin/ros install fukamachi/rove
- name: Load Dexador
shell: bash
run: |
/c/roswell/bin/ros -e '(handler-bind ((error (lambda (e) (uiop:print-condition-backtrace e) (uiop:quit -1)))) (ql:quickload :dexador))'
- name: Run tests
shell: bash
run: |
PATH="~/.roswell/bin:/c/roswell/bin:$PATH"
rove dexador-test.asd