From 91bf052b47f88adf4ead3bf81b8f4356ea2a1531 Mon Sep 17 00:00:00 2001 From: Owen Avery Date: Wed, 28 Aug 2024 22:47:03 -0400 Subject: [PATCH] remove warnings check with libasan --- .github/workflows/ccpp.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 82c0298d851..fee5f9a9e86 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -140,16 +140,17 @@ jobs: ASAN_OPTIONS=detect_leaks=0:use_odr_indicator=1 \ make -Otarget -j $(nproc) 2>&1 | tee log - - name: Check for new warnings - run: | - cd gccrs-build - < log grep 'warning: ' | sort > log_warnings - if diff -U0 ../.github/bors_log_expected_warnings log_warnings; then - : - else - echo 'See .' - exit 1 - fi >&2 +# Skip warnings check +# - name: Check for new warnings +# run: | +# cd gccrs-build +# < log grep 'warning: ' | sort > log_warnings +# if diff -U0 ../.github/bors_log_expected_warnings log_warnings; then +# : +# else +# echo 'See .' +# exit 1 +# fi >&2 - name: Run Tests run: |