forked from actor-framework/actor-framework
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.cirrus.yml
65 lines (56 loc) · 1.87 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
64
65
# 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
debug_build_template: &DEBUG_BUILD_TEMPLATE
build_script: .ci/run.sh build .ci/debug-flags.cmake . build
test_script: .ci/run.sh test build
asan_build_template: &ASAN_BUILD_TEMPLATE
build_script: .ci/run.sh build .ci/asan-flags.cmake . build
# The OpenSSL tests currently report memory leaks, see GH issue #1396.
test_script: .ci/run.sh test build openssl
# CentOS 7 EOL: June 2024
centos7_task:
container:
dockerfile: .ci/centos-7/Dockerfile
<< : *RESOURCES_TEMPLATE
<< : *DEBUG_BUILD_TEMPLATE
# Debian 11 EOL: June 2026
debian11_task:
container:
dockerfile: .ci/debian-11/Dockerfile
<< : *RESOURCES_TEMPLATE
<< : *DEBUG_BUILD_TEMPLATE
# Ubuntu 20.04 EOL: April 2025
ubuntu20_task:
container:
dockerfile: .ci/ubuntu-20.04/Dockerfile
<< : *RESOURCES_TEMPLATE
<< : *DEBUG_BUILD_TEMPLATE
# FreeBSD 12.4 EOL: December 2023
freebsd12_task:
freebsd_instance:
image_family: freebsd-12-4
<< : *RESOURCES_TEMPLATE
prepare_script: .ci/freebsd-12/prepare.sh
# Test net.udp_datagram_socket is unstable on FreeBSD, see GH issue #1397.
# << : *DEBUG_BUILD_TEMPLATE
build_script: .ci/run.sh build .ci/debug-flags.cmake . build
test_script: .ci/run.sh test build net.udp_datagram_socket
# Fedora 36 EOL: May 2023
sanitizers_task:
container:
dockerfile: .ci/fedora-36/Dockerfile
<< : *RESOURCES_TEMPLATE
prepare_script: .ci/run.sh assert UBSanitizer
<< : *ASAN_BUILD_TEMPLATE
# Windows Server 2019 EOL: January 2024
windows_task:
timeout_in: 120m
windows_container:
dockerfile: .ci/windows/Dockerfile
os_version: 2019
<< : *RESOURCES_TEMPLATE
build_script: .ci/windows/build.cmd
test_script: .ci/windows/test.cmd