From 8a6cec29452e3df8b7b7293d25119cbaa0f5491a Mon Sep 17 00:00:00 2001 From: David Sterba Date: Wed, 31 Jul 2024 18:47:48 +0200 Subject: [PATCH] btrfs-progs: ci: enable sanitizer workflow for devel All issues have been fixed in latest master, enable the checks for devel too. It takes about 17m. Also rename the file, drop the "ci-" prefix. Signed-off-by: David Sterba --- .github/workflows/{ci-sanitize.yml => sanitize.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{ci-sanitize.yml => sanitize.yml} (98%) diff --git a/.github/workflows/ci-sanitize.yml b/.github/workflows/sanitize.yml similarity index 98% rename from .github/workflows/ci-sanitize.yml rename to .github/workflows/sanitize.yml index c6256924..b5dadb3b 100644 --- a/.github/workflows/ci-sanitize.yml +++ b/.github/workflows/sanitize.yml @@ -1,14 +1,14 @@ # Run tests with sanitizers enabled # - UBSAN - undefined behaviour (default) # - ASAN - memory leaks etc -# -# There are known problems, for now only for targeted testing +# - TSAN - multi-threading issues name: Sanitizer checks run-name: Sanitizer checks on: push: branches: + - devel - sanitize-test - master jobs: @@ -123,7 +123,7 @@ jobs: run: sudo make D=tsan TEST_LOG=dump test-convert - name: Test internal APIs run: make D=tsan test-api -# Temporary: the library or python bindings are not linked with ASAN and test cannot be run +# Temporary: the library or python bindings are not linked with TSAN and test cannot be run # - name: Libbtrfsutil test # run: make D=tsan test-libbtrfsutil # - name: Libbtrfs build test