Skip to content

Commit

Permalink
Fix GCC CIs by adding -Wno-array-bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
WeiqunZhang committed Dec 10, 2024
1 parent d9aec32 commit 23d7b45
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
cd IAMR/Exec/eb_run3d
make -j 2 USE_MPI=TRUE USE_OMP=FALSE USE_CCACHE=TRUE USE_ASSERTION=TRUE \
WARN_ALL=TRUE WARN_ERROR=TRUE EXTRACXXFLAGS="-Wno-null-dereference" \
WARN_ALL=TRUE WARN_ERROR=TRUE EXTRACXXFLAGS="-Wno-null-dereference -Wno-array-bounds" \
KEEP_BUILDINFO_CPP=TRUE
${{github.workspace}}/amrex/Tools/C_scripts/mmclt.py --input ${{github.workspace}}/ccache.log.txt --identifier Source
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
cd IAMR/Exec/run3d
make -j 2 USE_MPI=TRUE USE_OMP=FALSE USE_CCACHE=TRUE USE_ASSERTION=TRUE \
WARN_ALL=TRUE WARN_ERROR=TRUE EXTRACXXFLAGS="-Wno-null-dereference" \
WARN_ALL=TRUE WARN_ERROR=TRUE EXTRACXXFLAGS="-Wno-null-dereference -Wno-array-bounds" \
KEEP_BUILDINFO_CPP=TRUE
${{github.workspace}}/amrex/Tools/C_scripts/mmclt.py --input ${{github.workspace}}/ccache.log.txt --identifier Source
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
cd IAMR/Exec/eb_run2d
make -j 2 USE_MPI=FALSE USE_OMP=TRUE USE_CCACHE=TRUE USE_ASSERTION=TRUE \
WARN_ALL=TRUE WARN_ERROR=TRUE EXTRACXXFLAGS="-Wno-null-dereference" \
WARN_ALL=TRUE WARN_ERROR=TRUE EXTRACXXFLAGS="-Wno-null-dereference -Wno-array-bounds" \
KEEP_BUILDINFO_CPP=TRUE
${{github.workspace}}/amrex/Tools/C_scripts/mmclt.py --input ${{github.workspace}}/ccache.log.txt --identifier Source
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
cd IAMR/Exec/run2d
make -j 2 USE_MPI=TRUE USE_OMP=FALSE USE_CCACHE=TRUE USE_ASSERTION=TRUE \
WARN_ALL=TRUE WARN_ERROR=TRUE EXTRACXXFLAGS="-Wno-null-dereference" \
WARN_ALL=TRUE WARN_ERROR=TRUE EXTRACXXFLAGS="-Wno-null-dereference -Wno-array-bounds" \
KEEP_BUILDINFO_CPP=TRUE
${{github.workspace}}/amrex/Tools/C_scripts/mmclt.py --input ${{github.workspace}}/ccache.log.txt --identifier Source
Expand Down

0 comments on commit 23d7b45

Please sign in to comment.