Make FASL path depend on *FEATURES* #29
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: Windows | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
install: mingw-w64-x86_64-gcc make diffutils git | |
- name: install host sbcl | |
shell: pwsh | |
run: | | |
choco install sbcl -source tools-for-build | |
- name: build | |
env: | |
SBCL_HOME: "/c/Program Files/Steel Bank Common Lisp/1.4.14" | |
run: | | |
PATH=$PATH:"/c/Program Files/Steel Bank Common Lisp/1.4.14" | |
export PATH | |
./make.sh --xc-host='sbcl --lose-on-corruption --disable-ldb --disable-debugger' | |
- name: make installer | |
run: | | |
./make-windows-installer.sh | |
mkdir sbcl-windows-installer; mv output/*msi sbcl-windows-installer | |
- name: save installer | |
uses: actions/upload-artifact@v1 | |
with: | |
name: sbcl-windows-installer | |
path: sbcl-windows-installer | |
- name: tests | |
working-directory: tests | |
run: ./run-tests.sh | |
- name: ansi-tests | |
working-directory: tests | |
run: ./ansi-tests.sh | |