From 62529fa0ce2b753ecce225d59bd9e8107ec2ab56 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Wed, 9 Oct 2019 13:49:24 +0200 Subject: [PATCH] ci: Drop --trace from make check Its really hard to read the output with all this spew --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index ebbbcf9c..57381ea5 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -53,7 +53,7 @@ jobs: run: make -j $(getconf _NPROCESSORS_ONLN) - name: Run tests # TODO: Build with -j (currently ends up with hangs in the tests) - run: make --trace check + run: make check env: ASAN_OPTIONS: detect_leaks=0 # Right now we're not fully clean, but this gets us use-after-free etc - name: Collect overall test logs on failure