forked from actor-framework/actor-framework
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.cirrus.yml
More file actions
24 lines (22 loc) · 733 Bytes
/
.cirrus.yml
File metadata and controls
24 lines (22 loc) · 733 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
# 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 14.3 EOL: November 2028.
freebsd14_task:
freebsd_instance:
image_family: freebsd-14-3
<< : *RESOURCES_TEMPLATE
prepare_script: .ci/freebsd/prepare.sh
build_script: .ci/run.sh build .ci/freebsd/debug.cmake . build
test_script: .ci/run.sh test build net.udp_datagram_socket
always:
robot_artifacts:
path: "build/robot-output/**"
<< : *BRANCH_FILTER