Fix FIXME.
[sbcl.git] / .cirrus.yml
bloba9a60b8367c8e56881436f17f027e37f627cd902
1 freebsd_build_task:
3   freebsd_instance:
4     matrix:
5       #image_family: freebsd-12-3
6       image_family: freebsd-13-0
7       # image_family: freebsd-14-0-snap
8     cpu: 1
9     memory: 1G
11   prepare_script:
12     - pkg install -y sbcl gmake git
14   build_script:
15     - echo '"1.9.99.999"' > version.lisp-expr
16     - ./make.sh
18   test_script:
19     - cd tests; ./run-tests.sh
21   ansi_test_script:
22     - cd tests; ./ansi-tests.sh
24 task:
25   name: Linux arm64
26   arm_container:
27     image: gcc:latest
28     cpu: 1
29     memory: 1G
30   install_script:
31     - apt-get -qq update
32     - apt-get -qq -y install sbcl strace
33   build_script:
34     - echo '"1.9.99.999"' > version.lisp-expr
35     - ./make.sh
37   test_script:
38     - cd tests; ./run-tests.sh
40   ansi_test_script:
41     - cd tests; ./ansi-tests.sh
43 task:
44   name: macOS arm64
45   macos_instance:
46     image: ghcr.io/cirruslabs/macos-ventura-base:latest
47     cpu: 2
48     memory: 1G
50   prepare_script:
51     - brew install sbcl
53   env:
54     SBCL_MAKE_JOBS: -j6
55   build_script:
56     - echo '"1.9.99.999"' > version.lisp-expr
57     - ./make.sh
59   # test_script:
60   #   - cd tests; ./run-tests.sh
62   # ansi_test_script:
63   #   - cd tests; ./ansi-tests.sh