Skip to content

Commit 51ba46c

Browse files
authored
Merge pull request #14166 from sharifelgamal/double-iso
fix release jobs to account for two ISOs
2 parents 1f195e1 + e03c192 commit 51ba46c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,8 @@ mdlint:
527527

528528
.PHONY: verify-iso
529529
verify-iso: # Make sure the current ISO exists in the expected bucket
530-
gsutil stat gs://$(ISO_BUCKET)/minikube-$(ISO_VERSION).iso
530+
gsutil stat gs://$(ISO_BUCKET)/minikube-$(ISO_VERSION)-amd64.iso
531+
gsutil stat gs://$(ISO_BUCKET)/minikube-$(ISO_VERSION)-arm64.iso
531532

532533
out/docs/minikube.md: $(shell find "cmd") $(shell find "pkg/minikube/constants")
533534
go run -ldflags="$(MINIKUBE_LDFLAGS)" -tags gendocs hack/help_text/gen_help_text.go

hack/jenkins/release_github_page.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
# VERSION_MAJOR: The major version of the tag to be released.
2222
# VERSION_MINOR: The minor version of the tag to be released.
2323
# VERSION_BUILD: The build version of the tag to be released.
24-
# ISO_SHA256: The sha 256 of the minikube-iso for the current release.
24+
# ISO_SHA256_AMD64: The sha 256 of the amd64 minikube-iso for the current release.
25+
# ISO_SHA256_ARM64: The sha 256 of the arm64 minikube-iso for the current release.
2526
# GITHUB_TOKEN: The GitHub API access token. Injected by the Jenkins credential provider.
2627

2728
set -eux -o pipefail
@@ -62,7 +63,8 @@ See [Getting Started](https://minikube.sigs.k8s.io/docs/start/)
6263
6364
## ISO Checksum
6465
65-
\`${ISO_SHA256}\`"
66+
amd64: \`${ISO_SHA256_AMD64}\`
67+
arm64: \`${ISO_SHA256_ARM64}\`"
6668

6769
# ================================================================================
6870
# Deleting release from github before creating new one

0 commit comments

Comments
 (0)