Yaakov Selkowitz

Results 58 comments of Yaakov Selkowitz

Unfortunately, I don't have time to track this down, but I will consider patches.

This replaces the last two original, manually built, x86-only, and unmaintained test images with multi-arch enabled builds maintained by QE. /assign @soltysh

We would like to see this as well for all four Red Hat architectures: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x. This can be accomplished with either docker buildx or recent versions of podman.

It's a matter of how the container build is controlled, but I don't see any automation in the repo. How are you driving the container builds?

In that case, instead of your usual `docker build` and `docker push` commands, you can use `docker buildx`, e.g.: ``` docker buildx build --platform linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x --push -t docker.io/edenhill/kcat:1.8.0 . ```...

That would be up to the maintainer, but 1) it looks like Travis CI is already being used for checking the code compilation, 2) it might be an overkill to...