forked from simd-everywhere/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) · 715 Bytes
/
.cirrus.yml
File metadata and controls
24 lines (23 loc) · 715 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
CXX: clang++
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 python3-pip python3-setuptools python3-wheel gcovr clang
- pip3 install meson
configure_script:
- /usr/local/bin/meson setup build -Db_coverage=true -Db_sanitize=address,undefined
build_script:
- ninja -C build -v -j 3
test_script:
- ninja -C build -v test