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.
46 lines
1.6 KiB
YAML
46 lines
1.6 KiB
YAML
name: Mac
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ${{ matrix.arch == 'arm64' && 'macos-15' || 'macos-15-intel' }}
|
|
timeout-minutes: 60
|
|
strategy:
|
|
matrix:
|
|
arch: [arm64, x86-64]
|
|
options: [--with-sb-thread --with-nonstop-foreign-call --with-tls-based-mv-return, --with-mark-region-gc --with-nonstop-foreign-call --with-tls-based-mv-return]
|
|
fail-fast: false
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: instal host sbcl
|
|
run: brew install sbcl
|
|
- name: build
|
|
env:
|
|
SBCL_MAKE_JOBS: -j4
|
|
SBCL_MAKE_TARGET_2_OPTIONS: --disable-ldb --disable-debugger
|
|
run: ./make.sh ${{ matrix.options }} --with-sb-core-compression --xc-host='sbcl --lose-on-corruption --disable-ldb --dynamic-space-size 2GB --disable-debugger'
|
|
- name: make binary
|
|
run: |
|
|
name=sbcl-`cat version.lisp-expr | ./run-sbcl.sh --noinform --noprint --eval '(write-line (read))'`-darwin-${{ matrix.arch }}
|
|
mkdir "sbcl-mac-binary-${{ matrix.arch }}${{ matrix.options }}"
|
|
cd ..
|
|
mv sbcl $name
|
|
./$name/binary-distribution.sh $name
|
|
bzip2 $name-binary.tar
|
|
mv $name sbcl
|
|
mv $name-binary.tar.bz2 "sbcl/sbcl-mac-binary-${{ matrix.arch }}${{ matrix.options }}"
|
|
- name: save binary
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: sbcl-mac-binary-${{ matrix.arch }}${{ matrix.options }}
|
|
path: sbcl-mac-binary-${{ matrix.arch }}${{ matrix.options }}
|
|
- name: build documentation
|
|
run: cd ./doc/manual && sh generate-texinfo.sh
|
|
- name: test
|
|
run: cd tests; ./run-tests.sh --slow
|
|
- name: ansi-test
|
|
run: cd tests; ./ansi-tests.sh
|