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.
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
name: Linux arm
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-24.04-arm
|
|
timeout-minutes: 60
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: install host sbcl
|
|
run: |
|
|
sudo dpkg --add-architecture armhf
|
|
sudo apt-get -qq update | true
|
|
sudo apt-get -qq install
|
|
sudo apt-get -qq install libc6:armhf gcc-arm-linux-gnueabihf
|
|
cd /tmp/
|
|
wget -q https://github.com/sbcl/sbcl/releases/download/sbcl-1.4.14/sbcl-1.4.15.11468-de94930ec-linux-arm64-binary.tar.bz2
|
|
tar xf sbcl-1.4.15.11468-de94930ec-linux-arm64-binary.tar.bz2
|
|
cd sbcl-1.4.15.11468-de94930ec-linux-arm64
|
|
sudo ./install.sh
|
|
|
|
- name: build
|
|
env:
|
|
SBCL_MAKE_JOBS: -j4
|
|
SBCL_MAKE_TARGET_2_OPTIONS: --disable-ldb --disable-debugger
|
|
CC: arm-linux-gnueabihf-gcc
|
|
run: ./make.sh --xc-host='sbcl --dynamic-space-size 700MB --lose-on-corruption --disable-ldb --disable-debugger' --arch=arm
|
|
|
|
- name: build documentation
|
|
run: cd ./doc/manual && sh generate-texinfo.sh
|
|
- name: test
|
|
env:
|
|
CC: arm-linux-gnueabihf-gcc
|
|
run: cd tests; ./run-tests.sh
|
|
- name: ansi-test
|
|
run: cd tests; ./ansi-tests.sh
|