From f7e4c3d383280568e64680f61e47f809d4ca9287 Mon Sep 17 00:00:00 2001 From: Hannes Achleitner Date: Mon, 8 Apr 2024 08:08:25 +0200 Subject: [PATCH] Increase default boot timeout --- emulator-run-cmd/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emulator-run-cmd/src/main.ts b/emulator-run-cmd/src/main.ts index 0125267e..e88523cb 100644 --- a/emulator-run-cmd/src/main.ts +++ b/emulator-run-cmd/src/main.ts @@ -51,7 +51,7 @@ async function run() { let bootTimeout = core.getInput('bootTimeout') if (bootTimeout == null) { - bootTimeout = '600' + bootTimeout = '720' } console.log(`Starting emulator with API=${api}, TAG=${tag} and ABI=${abi}...`)