Skip to content

Commit

Permalink
Remove -Wno-error=#warnings from CI configuration because deprecated …
Browse files Browse the repository at this point in the history
…headers are no longer used

Leave the flag for some CI configurations, where Kokkos still includes
deprecated HPX headers.
  • Loading branch information
msimberg committed Dec 11, 2024
1 parent 7fcd235 commit 601412c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ jobs:
matrix:
hpx_version: ["1.8.1", "v1.9.0", "v1.10.0"]
kokkos_version: ["3.6.00", "4.0.00"]
include:
- hpx_version: "v1.10.0"
kokkos_version: "3.6.00"
cxxflags: "-Wno-error=#warnings"
- hpx_version: "v1.10.0"
kokkos_version: "4.0.00"
cxxflags: "-Wno-error=#warnings"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -80,7 +87,7 @@ jobs:
-Bbuild \
-GNinja \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DCMAKE_CXX_FLAGS="-Werror -Wno-error=#warnings" \
-DCMAKE_CXX_FLAGS="-Werror ${{ matrix.cxxflags }}" \
-DCMAKE_BUILD_TYPE=Debug \
-DHPX_KOKKOS_ENABLE_TESTS=ON
- name: Build
Expand Down

0 comments on commit 601412c

Please sign in to comment.