Builds stuck in "Building soon"

My project builds for 4 architectures and the other 2 never start building. They get stuck in “Building soon”. What can I do about it?

I had the same issue. It was a temporary issue. After about 48h it started to build. When I had the same issue I built manually on my computer and upload the snap.

I left it alone to see if it would start at some point. Today I checked again and this is what happened.

Apparently it gets disconnected from github :confused: When I login again and start the build again, I can’t chose the platform, so I need to build for all at the same time again which means 4 of them will build and 2 will get stale and never build.

edit: I just reconnected to the repository and only one of the 2 is stuck in “Building Soon”. I guess I’ll just be more patient :confused:

If you are saying that it build for 4 platform, then perhaps it is necessary just to specify the target platforms in your snapcraft.yml like that:

...
platforms:
  amd64:
    build-on: [ amd64 ]
    build-for: [ amd64 ]
  arm64:
    build-on: [ arm64 ]
    build-for: [ arm64 ]
...

P.S. The auto-disconnection from GitHub is an old issue that also I have.