At any given time, there is a fixed maximum capacity for number of concurrent builds on EAS Build. The number of build requests at times will exceed the capacity, and so it is necessary to put build requests into queues.
There are two queue types: normal and priority. The normal queue is available to developers on the free tier, and priority is available to accounts with Production and Enterprise subscriptions and On-demand builds.
Usage of EAS Build tends to peak during the middle of the business day in North American timezones, and during that time, priority builds will typically use up most of the available capacity. The normal queue time during peak will frequently grow to an hour or more. If you find yourself in this situation, you have the following options.
- Upgrade to a Production or Enterprise accounts for priority queue access
- Use the On-demand plan for priority queue access, and pay per build
- Run your build locally (or on other hosted infrastructure) with
eas build --local
. Learn more - Run your build locally by running
npx expo prebuild
and then manually archiving and signing it. Learn more about prebuild - Work around peak times and build at slower times of the day. You can see detailed charts about usage on the EAS Build - Service Status Page to help decide what times are best.
Running builds is expensive! If a build takes 20 minutes, that's 20 minutes of compute time on a compute resource that is powerful enough to build an iOS/Android app. Compute time for iOS builds is particularly expensive, and the infrastructure is not dynamically scalable.
You can do this with the On-demand plan.