Skip to content

Commit

Permalink
Skip C++ test for fedora
Browse files Browse the repository at this point in the history
Fedora 41 seems to ship with C++ support either in the package or via dependencies. Exclude it as a quick fix.
  • Loading branch information
vmcj committed Nov 1, 2024
1 parent 87769c6 commit fb67ba7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/jobs/configure-checks/all.bats
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ compile_assertions_finished () {
}

@test "Install GNU C only" {
if [ "$distro_id" = "ID=fedora" ]; then
# Fedora ships with a gcc with enough C++ support
skip
fi
repo-remove clang g++
repo-install gcc libcgroup-dev
compiler_assertions gcc ''
Expand Down

0 comments on commit fb67ba7

Please sign in to comment.