Skip to content

Commit fb67ba7

Browse files
committed
Skip C++ test for fedora
Fedora 41 seems to ship with C++ support either in the package or via dependencies. Exclude it as a quick fix.
1 parent 87769c6 commit fb67ba7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/jobs/configure-checks/all.bats

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,10 @@ compile_assertions_finished () {
111111
}
112112

113113
@test "Install GNU C only" {
114+
if [ "$distro_id" = "ID=fedora" ]; then
115+
# Fedora ships with a gcc with enough C++ support
116+
skip
117+
fi
114118
repo-remove clang g++
115119
repo-install gcc libcgroup-dev
116120
compiler_assertions gcc ''

0 commit comments

Comments
 (0)