fix: docker buildx support for multiplatform build (#10983)

This commit is contained in:
Harshavardhana
2020-11-26 09:47:30 -08:00
committed by GitHub
parent ab49471f33
commit 81c907b4bf
7 changed files with 31 additions and 142 deletions

View File

@@ -28,6 +28,10 @@ verify_sha256sum() {
}
verify_signature() {
if [ "${TARGETARCH}" = "arm" ]; then
echo "ignoring verification of binary signature"
return
fi
echo "verifying binary signature"
minisign -VQm /usr/bin/minio -P RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav
}