Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NFC] Disable a warning that happens on system headers on CI #6597

Merged
merged 5 commits into from
May 15, 2024
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ jobs:
runs-on: ubuntu-latest
env:
ASAN_OPTIONS: "symbolize=1"
COMPILER_FLAGS: "-fsanitize=address"
# Disable a warning that happens on system headers in the CI machines,
# https://github.com/WebAssembly/binaryen/pull/6597
COMPILER_FLAGS: "-fsanitize=address -Wno-deprecated-declarations"
CC: "clang-18"
CXX: "clang++-18"
steps:
Expand Down Expand Up @@ -243,7 +245,9 @@ jobs:
name: tsan
runs-on: ubuntu-latest
env:
COMPILER_FLAGS: "-fsanitize=thread"
# Disable a warning that happens on system headers in the CI machines,
# https://github.com/WebAssembly/binaryen/pull/6597
COMPILER_FLAGS: "-fsanitize=thread -Wno-deprecated-declarations"
LINKER_FLAGS: "-fsanitize=thread"
CC: "clang-18"
CXX: "clang++-18"
Expand Down
Loading