forked from actor-framework/actor-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cirrus.yml
38 lines (34 loc) · 1.09 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
# On community clusters, we can use up to 8 CPUs and up to 24 GB of memory.
# However, using less usually means we get workers more quickly.
resources_template: &RESOURCES_TEMPLATE
cpu: 4
memory: 16GB
# Run only when pushing to main or in PRs.
branch_filter: &BRANCH_FILTER
only_if: >
$CIRRUS_PR != '' ||
$CIRRUS_BRANCH == 'main'
# FreeBSD 13.3 EOL: January 2026
freebsd13_task:
freebsd_instance:
image_family: freebsd-13-3
<< : *RESOURCES_TEMPLATE
prepare_script: .ci/freebsd-13/prepare.sh
build_script: .ci/run.sh build .ci/debug-flags.cmake . build
test_script: .ci/run.sh test build net.udp_datagram_socket
always:
robot_artifacts:
path: "build/robot-output/**"
<< : *BRANCH_FILTER
# FreeBSD 14 EOL: November 2028
freebsd14_task:
freebsd_instance:
image_family: freebsd-14-0
<< : *RESOURCES_TEMPLATE
prepare_script: .ci/freebsd-14/prepare.sh
build_script: .ci/run.sh build .ci/debug-flags.cmake . build
test_script: .ci/run.sh test build net.udp_datagram_socket
always:
robot_artifacts:
path: "build/robot-output/**"
<< : *BRANCH_FILTER