From 5e520c55eb8d296f997e60d22489a5b4cfa4c5b8 Mon Sep 17 00:00:00 2001 From: MCJ Vasseur <14887731+vmcj@users.noreply.github.com> Date: Fri, 1 Nov 2024 09:34:36 +0100 Subject: [PATCH] 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. --- .github/jobs/configure-checks/all.bats | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/jobs/configure-checks/all.bats b/.github/jobs/configure-checks/all.bats index 207650895f..0ac60eae40 100755 --- a/.github/jobs/configure-checks/all.bats +++ b/.github/jobs/configure-checks/all.bats @@ -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 ''