From 0e375e4a3f5638a2ab9c3dac081c358e94931e02 Mon Sep 17 00:00:00 2001 From: Pavel Punegov Date: Thu, 23 Jun 2022 11:10:09 +0300 Subject: [PATCH] [K/N][perf] Exclude videoplayer bench from execution Due to the luck of available agents that have SDL and ffmpeg turn off this benchmark --- kotlin-native/performance/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kotlin-native/performance/build.gradle b/kotlin-native/performance/build.gradle index cabbdac69ba..81bf5207391 100644 --- a/kotlin-native/performance/build.gradle +++ b/kotlin-native/performance/build.gradle @@ -104,7 +104,9 @@ task buildAnalyzer { } task konanRun { - subprojects.each { + subprojects.findAll { + !it.name.contains("videoplayer") + }.each { dependsOn "${it.path}:konanRun" } }