Stop saying 'can't open-code test of unknown type'.
[sbcl.git] / .cirrus.yml
blobf3646498633a72077e47b41f6a23a999106d16bc
1 freebsd_build_task:
3   freebsd_instance:
4     matrix:
5       image_family: freebsd-14-0
6     cpu: 1
7     memory: 1G
9   prepare_script:
10     - pkg install -y sbcl gmake git
12   build_script:
13     - echo '"1.9.99.999"' > version.lisp-expr
14     - ./make.sh --with-sb-core-compression
16   test_script:
17     - cd tests; ./run-tests.sh
19   ansi_test_script:
20     - cd tests; ./ansi-tests.sh
22 task:
23   name: Linux arm64
24   arm_container:
25     image: gcc:latest
26     cpu: 1
27     memory: 2G
28   install_script:
29     - apt-get -qq update
30     - apt-get -qq -y install sbcl strace libzstd-dev
31   build_script:
32     - echo '"1.9.99.999"' > version.lisp-expr
33     - ./make.sh --with-sb-core-compression
35   test_script:
36     - cd tests; ./run-tests.sh --slow
38   ansi_test_script:
39     - cd tests; ./ansi-tests.sh