sbcl.sbcl/.cirrus.yml
2025-10-22 05:27:16 +03:00

40 lines
850 B
YAML

freebsd_build_task:
freebsd_instance:
matrix:
image_family: freebsd-14-2
cpu: 2
memory: 2G
prepare_script:
- pkg install -y sbcl gmake git
build_script:
- echo '"1.9.99.999"' > version.lisp-expr
- ./make.sh --with-sb-core-compression --with-sb-thread --with-nonstop-foreign-call
test_script:
- cd tests; ./run-tests.sh
ansi_test_script:
- cd tests; ./ansi-tests.sh
# task:
# name: Linux arm64
# arm_container:
# image: gcc:latest
# cpu: 1
# memory: 2G
# install_script:
# - apt-get -qq update
# - apt-get -qq -y install sbcl strace libzstd-dev
# build_script:
# - echo '"1.9.99.999"' > version.lisp-expr
# - ./make.sh --with-sb-core-compression
# test_script:
# - cd tests; ./run-tests.sh --slow
# ansi_test_script:
# - cd tests; ./ansi-tests.sh