From 5f620eca6299675244149bf780f0e642ef499e8d Mon Sep 17 00:00:00 2001 From: SoMuchForSubtlety Date: Fri, 14 Apr 2023 19:07:50 +0200 Subject: [PATCH] Add comments to gradle config --- build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index 43fc98e6576..ba15dac4dd1 100644 --- a/build.gradle +++ b/build.gradle @@ -97,7 +97,12 @@ subprojects { } if (System.properties['test.profile'] == 'podman') { + // The compose container relies on the deprecated link feature, which is not supported by podman exclude '**/*DockerCompose*' + filter { + // cgroups v2 don't support settings swappiness + excludeTestsMatching '*shouldReportOOMAfterWait' + } } }