Skip to content

Commit

Permalink
CI: Fix Tooling -Wno-error=pass-failed (#517)
Browse files Browse the repository at this point in the history
Tooling update seems to warn on missing vectorization
passes now, skip this explicitly in `-Werror`.
  • Loading branch information
ax3l authored Feb 3, 2024
1 parent 4a8357d commit 4294e57
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tooling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ jobs:
ccache-openmp-clangsan-
- name: build ImpactX
env: {CC: mpicc, CXX: mpic++, OMPI_CC: clang, OMPI_CXX: clang++, CXXFLAGS: -Werror}
env:
CC: mpicc
CXX: mpic++
OMPI_CC: clang
OMPI_CXX: clang++
CXXFLAGS: "-Werror -Wno-error=pass-failed"
run: |
export LDFLAGS="${LDFLAGS} -fsanitize=address,undefined -shared-libsan"
export CXXFLAGS="${CXXFLAGS} -fsanitize=address,undefined -shared-libsan"
Expand Down

0 comments on commit 4294e57

Please sign in to comment.