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 githubedit: 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 ![]()
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.

