-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.cirrus.yml
More file actions
39 lines (31 loc) · 850 Bytes
/
.cirrus.yml
File metadata and controls
39 lines (31 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
freebsd_build_task:
freebsd_instance:
matrix:
image_family: freebsd-14-3
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