mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Merge pull request #41840 from ixdy/make-quick-release
Automatic merge from submit-queue (batch tested with PRs 41540, 41808, 41710, 41838, 41840) Make make quick-release quick again **What this PR does / why we need it**: fix bug in #39257 which was causing `make quick-release` to build for all platforms. It seems like the `make` target variable line was setting `KUBE_RELEASE_RUN_TESTS` to `n KUBE_FASTBUILD = true`, rather than setting both variables. **Release note**: ```release-note NONE ```
This commit is contained in:
commit
1320021aaf
3
Makefile
3
Makefile
@ -368,7 +368,8 @@ ifeq ($(PRINT_HELP),y)
|
||||
release-skip-tests quick-release:
|
||||
@echo "$$RELEASE_SKIP_TESTS_HELP_INFO"
|
||||
else
|
||||
release-skip-tests quick-release: KUBE_RELEASE_RUN_TESTS = n KUBE_FASTBUILD = true
|
||||
release-skip-tests quick-release: KUBE_RELEASE_RUN_TESTS = n
|
||||
release-skip-tests quick-release: KUBE_FASTBUILD = true
|
||||
release-skip-tests quick-release:
|
||||
build/release.sh
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user