ci disable LeakSanitizer on dockerized tests

This commit is contained in:
embeddedt
2022-01-24 10:26:21 -05:00
committed by GitHub
parent 5ec532dfd5
commit c9e19272c6
+1 -8
View File
@@ -68,17 +68,10 @@ jobs:
# The shell to run commands with in the container
shell: /bin/bash
# Install some dependencies in the container. This speeds up builds if
# you are also using githubToken. Any dependencies installed here will
# be part of the container image that gets cached, so subsequent
# builds don't have to re-install them. The image layer is cached
# publicly in your project's package repository, so it is vital that
# no secrets are present in the container state or logs.
install: |
apt-get update -y
apt-get install -y gcc python3 libpng-dev ruby-full gcovr cmake
apt-get install -y build-essential
# Produce a binary artifact and place it in the mounted volume
run: |
python3 tests/main.py --report test
env ASAN_OPTIONS=detect_leaks=0 python3 tests/main.py --report test