Hi, I have a snap (Stalefish) which does not, and as far as I can see, will never compile on s390 and a couple of the other platforms. It will only successfully compile for amd64 and arm64 (and that’s fine by me)
I found
which describes how to enable builds ONLY for specific architectures. This means I won’t have all those “failed to build lines” in my builds page. Great.
You will need the specific build-for: entries as well, else the system thinks wherever you build it it will be able to run on any architecture, so it only tries to build on the first one it finds (amd64 in your case)
That’s interesting thanks. The documentation as written made me think that build-for would be assumed the same as each entry of build-on and so I could omit it.