diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f455c298c..4a133276c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ This is the log of notable changes to EAS CLI and related packages. - Redesign UX in beta credentials manager. ([#360](https://github.com/expo/eas-cli/pull/360) by [@quinlanj](https://github.com/quinlanj)) - Port more options to the beta credentials manager. ([#352](https://github.com/expo/eas-cli/pull/352), [357](https://github.com/expo/eas-cli/pull/357), [361](https://github.com/expo/eas-cli/pull/361) by [@quinlanj](https://github.com/quinlanj)) - Add getBuildProfileNamesAsync helper to EasJsonReader. ([#351](https://github.com/expo/eas-cli/pull/351) by [@quinlanj](https://github.com/quinlanj)) +- Increase build timeout to 1 hour. ([#370](https://github.com/expo/eas-cli/pull/370) by [@wkozyra95](https://github.com/wkozyra95)) ## [0.13.0](https://github.com/expo/eas-cli/releases/tag/v0.13.0) - 2021-04-22 diff --git a/packages/eas-cli/src/build/create.ts b/packages/eas-cli/src/build/create.ts index 56934c2582..c8bb2d110c 100644 --- a/packages/eas-cli/src/build/create.ts +++ b/packages/eas-cli/src/build/create.ts @@ -71,7 +71,7 @@ async function startBuildsAsync( async function waitForBuildEndAsync( buildIds: string[], - { timeoutSec = 1800, intervalSec = 30 } = {} + { timeoutSec = 3600, intervalSec = 30 } = {} ): Promise<(BuildFragment | null)[]> { Log.log('Waiting for build to complete. You can press Ctrl+C to exit.'); const spinner = ora().start();