Skip to content

Commit

Permalink
remove warnings check with libasan
Browse files Browse the repository at this point in the history
  • Loading branch information
powerboat9 committed Aug 29, 2024
1 parent 42dbf1b commit 91bf052
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/Rust-GCC/gccrs/pull/1026>.'
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 <https://github.com/Rust-GCC/gccrs/pull/1026>.'
# exit 1
# fi >&2

- name: Run Tests
run: |
Expand Down

0 comments on commit 91bf052

Please sign in to comment.