mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-20 10:20:51 +00:00
Merge pull request #99386 from BenTheElder/conformance-on-release
don't default to building conformance image for fastbuilds (quick-rel…
This commit is contained in:
commit
5491484aa9
@ -28,7 +28,7 @@ readonly RELEASE_STAGE="${LOCAL_OUTPUT_ROOT}/release-stage"
|
||||
readonly RELEASE_TARS="${LOCAL_OUTPUT_ROOT}/release-tars"
|
||||
readonly RELEASE_IMAGES="${LOCAL_OUTPUT_ROOT}/release-images"
|
||||
|
||||
KUBE_BUILD_CONFORMANCE=${KUBE_BUILD_CONFORMANCE:-y}
|
||||
KUBE_BUILD_CONFORMANCE=${KUBE_BUILD_CONFORMANCE:-n}
|
||||
KUBE_BUILD_PULL_LATEST_IMAGES=${KUBE_BUILD_PULL_LATEST_IMAGES:-y}
|
||||
|
||||
# Validate a ci version
|
||||
|
@ -404,6 +404,7 @@ ifeq ($(PRINT_HELP),y)
|
||||
release release-in-a-container:
|
||||
@echo "$$RELEASE_HELP_INFO"
|
||||
else
|
||||
release release-in-a-container: KUBE_BUILD_CONFORMANCE = y
|
||||
release:
|
||||
build/release.sh
|
||||
release-in-a-container:
|
||||
@ -421,6 +422,7 @@ define RELEASE_IMAGES_HELP_INFO
|
||||
endef
|
||||
.PHONY: release-images
|
||||
ifeq ($(PRINT_HELP),y)
|
||||
release-images: KUBE_BUILD_CONFORMANCE = y
|
||||
release-images:
|
||||
@echo "$$RELEASE_IMAGES_HELP_INFO"
|
||||
else
|
||||
@ -457,7 +459,7 @@ define QUICK_RELEASE_IMAGES_HELP_INFO
|
||||
#
|
||||
# Args:
|
||||
# KUBE_FASTBUILD: Whether to cross-compile for other architectures. Set to 'false' to do so.
|
||||
# KUBE_BUILD_CONFORMANCE: Whether to build conformance testing image as well. Set to 'n' to skip.
|
||||
# KUBE_BUILD_CONFORMANCE: Whether to build conformance testing image as well. Set to 'y' to do so.
|
||||
#
|
||||
# Example:
|
||||
# make quick-release-images
|
||||
|
Loading…
Reference in New Issue
Block a user