forked from ethomag/simde
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.cirrus.yml
More file actions
24 lines (23 loc) · 744 Bytes
/
.cirrus.yml
File metadata and controls
24 lines (23 loc) · 744 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
container:
image: debian:testing-slim
task:
name: Sanitizers
skip: $BRANCH == "master" || ($BRANCH != 'ci/cirrus' && $BRANCH =~ '^ci/.+')
env:
CC: clang-17
CXX: clang++-17
CFLAGS: -Wextra -Werror -march=native
CXXFLAGS: -Wextra -Werror -march=native
system_info_script:
- cat /proc/cpuinfo
- cat /proc/meminfo
install_dependencies_script:
- apt-get update
- apt-get install -y ninja-build ninja-build pipx python3-setuptools python3-wheel gcovr clang-17
- pipx install meson==0.55.1
configure_script:
- /root/.local/bin/meson setup build -Db_coverage=true -Db_sanitize=address,undefined -Db_lundef=false
build_script:
- ninja -C build -v -j 3
test_script:
- ninja -C build -v test