Fix to output an error log file in secure downloader. #1761
Workflow file for this run
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] | |
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: Install dependencies | |
shell: bash | |
run: /c/roswell/bin/ros install fukamachi/dexador | |
- name: Run tests | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
shell: bash | |
run: | | |
PATH="~/.roswell/bin:/c/roswell/bin:$PATH" | |
rove qlot.asd |