forked from sbcl/sbcl
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (39 loc) · 1.17 KB
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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 libzstd-devel
- 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 --with-sb-core-compression --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