mbalassi opened a new pull request #130:
URL: https://github.com/apache/flink-kubernetes-operator/pull/130
This enables us to publish docker build for both `amd64` and `arm64`. You
can verify this via:
```shell
% docker manifest inspect ghcr.io/mbalassi/flink-operator:149986a
{
"schemaVersion": 2,
"mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
"manifests": [
{
"mediaType": "application/vnd.docker.distribution.manifest.v2+json",
"size": 3055,
"digest":
"sha256:017787b0c5ccf724f676ed73f26c2928a2d9d58c4464e4ba7fb00ca3f2470158",
"platform": {
"architecture": "amd64",
"os": "linux"
}
},
{
"mediaType": "application/vnd.docker.distribution.manifest.v2+json",
"size": 3055,
"digest":
"sha256:c37a552f048c0431672dc190e735f4a618bd0c42030de4fea9cdc02dbab88fee",
"platform": {
"architecture": "arm64",
"os": "linux"
}
}
]
}
```
While working on this I noticed instability of the maven tests in the docker
builds due to growing latency, so I decided to cut down on the number of times
we run the tests for a single commit/PR. The docker build does not run the
tests after this change by default, but the CI does.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]