mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
Some checks are pending
CL-host / ecl (push) Waiting to run
CL-host / clisp (push) Waiting to run
CL-host / ccl (push) Waiting to run
CL-host / cmucl (push) Waiting to run
CL-host / sbcl (push) Waiting to run
CL-host / compare-xc-host-fasls (ccl, false) (push) Blocked by required conditions
CL-host / compare-xc-host-fasls (clisp, false) (push) Blocked by required conditions
CL-host / compare-xc-host-fasls (cmucl, false) (push) Blocked by required conditions
CL-host / compare-xc-host-fasls (self, false) (push) Blocked by required conditions
Linux arm / build (push) Waiting to run
Linux arm64 / build () (push) Waiting to run
Linux qemu / build (ppc64le) (push) Waiting to run
Linux qemu / build (riscv64) (push) Waiting to run
Linux / build (x86, --with-sb-thread, ) (push) Waiting to run
Linux / build (x86, --without-sb-thread, ) (push) Waiting to run
Linux / build (x86, --without-sb-unicode, ) (push) Waiting to run
Linux / build (x86-64, --with-mark-region-gc --with-nonstop-foreign-call) (push) Waiting to run
Linux / build (x86-64, --with-sb-fasteval --without-sb-eval --with-nonstop-foreign-call, fasteval) (push) Waiting to run
Linux / build (x86-64, --with-sb-thread --with-nonstop-foreign-call --with-tls-based-mv-return, sse4) (push) Waiting to run
Linux / build (x86-64, --with-sb-thread, ) (push) Waiting to run
Linux / build (x86-64, --without-sb-thread, ) (push) Waiting to run
Linux / build (x86-64, --without-sb-unicode, ) (push) Waiting to run
Mac / build (arm64, --with-mark-region-gc --with-nonstop-foreign-call --with-tls-based-mv-return) (push) Waiting to run
Mac / build (arm64, --with-sb-thread --with-nonstop-foreign-call --with-tls-based-mv-return) (push) Waiting to run
Mac / build (x86-64, --with-mark-region-gc --with-nonstop-foreign-call --with-tls-based-mv-return) (push) Waiting to run
Mac / build (x86-64, --with-sb-thread --with-nonstop-foreign-call --with-tls-based-mv-return) (push) Waiting to run
Windows arm64 / build (arm64, clang-aarch64, clangarm64) (push) Waiting to run
Windows / build (x86-64, ucrt-x86_64, ucrt64) (push) Waiting to run
Also, test texinfo generation on github.
60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
name: Windows
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: windows-2022
|
|
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
# - { sys: mingw64, env: x86_64, arch: x86-64}
|
|
# - { sys: mingw32, env: i686, arch: x86}
|
|
- { sys: ucrt64, env: ucrt-x86_64, arch: x86-64}
|
|
|
|
fail-fast: false
|
|
|
|
defaults:
|
|
run:
|
|
shell: msys2 {0}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: msys2/setup-msys2@v2
|
|
with:
|
|
install: mingw-w64-${{matrix.env}}-gcc make diffutils git libzstd-devel
|
|
msystem: ${{matrix.sys}}
|
|
|
|
- name: install host sbcl
|
|
shell: pwsh
|
|
run: |
|
|
Invoke-WebRequest -Uri "https://github.com/sbcl/sbcl/releases/download/sbcl-1.4.14/sbcl-1.4.14-x86-64-windows-binary.msi" -OutFile "sbcl.msi"
|
|
Start-Process msiexec.exe -Wait -ArgumentList '/i sbcl.msi /qn /norestart'
|
|
- name: build
|
|
env:
|
|
SBCL_MAKE_JOBS: -j4
|
|
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 --arch=${{matrix.arch}} --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@v4
|
|
with:
|
|
name: sbcl-windows-installer-${{ matrix.sys }}
|
|
path: sbcl-windows-installer
|
|
- name: build documentation
|
|
run: cd ./doc/manual && sh generate-texinfo.sh
|
|
- name: tests
|
|
working-directory: tests
|
|
run: ./run-tests.sh
|
|
- name: ansi-tests
|
|
working-directory: tests
|
|
run: ./ansi-tests.sh
|