-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cirrus.yml
63 lines (50 loc) · 1.13 KB
/
.cirrus.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
freebsd_build_task:
freebsd_instance:
matrix:
#image_family: freebsd-12-3
image_family: freebsd-13-0
# image_family: freebsd-14-0-snap
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: 1G
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