From f3bc8677c51068d29a5cecb05eea5e7cfcf01611 Mon Sep 17 00:00:00 2001 From: Timofey Solonin Date: Thu, 21 Sep 2023 15:14:14 +0200 Subject: [PATCH] Increase execution timeout due to slower Rosetta agents ^KT-61369 --- .../src/main/kotlin/org/jetbrains/kotlin/ExecutorService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/ExecutorService.kt b/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/ExecutorService.kt index 10473d8627b..702dd340b27 100644 --- a/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/ExecutorService.kt +++ b/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/ExecutorService.kt @@ -55,7 +55,7 @@ private fun Executor.service(project: Project) = object: ExecutorService { val request = ExecuteRequest( executableAbsolutePath = execSpec.executable, args = execSpec.args, - timeout = 15.toDuration(DurationUnit.MINUTES), + timeout = 40.toDuration(DurationUnit.MINUTES), ).apply { execSpec.standardInput?.let { stdin = it