sbcl.sbcl/.cirrus.yml
2024-01-22 12:48:32 +03:00

62 lines
1.1 KiB
YAML

freebsd_build_task:
freebsd_instance:
matrix:
image_family: freebsd-14-0
cpu: 1
memory: 1G
prepare_script:
- pkg install -y sbcl gmake git
build_script:
- echo '"1.9.99.999"' > version.lisp-expr
- ./make.sh
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
build_script:
- echo '"1.9.99.999"' > version.lisp-expr
- ./make.sh
test_script:
- cd tests; ./run-tests.sh
ansi_test_script:
- cd tests; ./ansi-tests.sh
task:
name: macOS arm64
macos_instance:
image: ghcr.io/cirruslabs/macos-ventura-base:latest
cpu: 2
memory: 1G
prepare_script:
- brew install sbcl
env:
SBCL_MAKE_JOBS: -j6
build_script:
- echo '"1.9.99.999"' > version.lisp-expr
- ./make.sh
# test_script:
# - cd tests; ./run-tests.sh
# ansi_test_script:
# - cd tests; ./ansi-tests.sh