Skip to content

Commit

Permalink
Update cmake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alexalex200 committed Nov 14, 2022
1 parent d65ccff commit c4c98aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ jobs:
# env:
# ASAN_OPTIONS: detect_leaks=1
run: |
cat "${INPUT_FILENAME}" | ./bin/"${EXECUTABLE_NAME}"
cat "${INPUT_FILENAME}" | tr -d '\r' | ./bin/"${EXECUTABLE_NAME}"
- name: Sanitizers (Windows MSVC)
# run one sanitizer for each OS to avoid building extra binaries
Expand All @@ -421,7 +421,7 @@ jobs:
if: runner.os == 'Linux' && matrix.cxx == 'g++-11'
run: |
# remove --show-leak-kinds=all (and --track-origins=yes) if there are many leaks in external libs
cat "${INPUT_FILENAME}" | valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --error-exitcode=1 ./bin/"${EXECUTABLE_NAME}"
cat "${INPUT_FILENAME}" | tr -d '\r' | valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --error-exitcode=1 ./bin/"${EXECUTABLE_NAME}"
- name: Set Tag Name
if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit c4c98aa

Please sign in to comment.