mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-10-31 02:08:13 +00:00 
			
		
		
		
	hack/dev-build-*: Run dev build instead of release build
The current dev-build-*.sh scripts do a full release build which means running tests and also doing cross-platform builds. This is unnecessary and after discussing this in Slack it was suggested to either blow away these files or fix them. This should fix them.
This commit is contained in:
		| @@ -22,8 +22,9 @@ set -o pipefail | |||||||
|  |  | ||||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE}")/.. | KUBE_ROOT=$(dirname "${BASH_SOURCE}")/.. | ||||||
|  |  | ||||||
| # Build a release | # Build a dev release | ||||||
| "${KUBE_ROOT}/build/release.sh" | make -f ${KUBE_ROOT}/Makefile quick-release | ||||||
|  |  | ||||||
| if [ "$?" != "0" ]; then | if [ "$?" != "0" ]; then | ||||||
|         echo "Building a release failed!" |         echo "Building a release failed!" | ||||||
|         exit 1 |         exit 1 | ||||||
|   | |||||||
| @@ -23,8 +23,9 @@ set -o pipefail | |||||||
|  |  | ||||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE}")/.. | KUBE_ROOT=$(dirname "${BASH_SOURCE}")/.. | ||||||
|  |  | ||||||
| # Then build a release | # Build a dev release | ||||||
| "${KUBE_ROOT}/build/release.sh" | make -f ${KUBE_ROOT}/Makefile quick-release | ||||||
|  |  | ||||||
| if [ "$?" != "0" ]; then | if [ "$?" != "0" ]; then | ||||||
|         echo "Building the release failed!" |         echo "Building the release failed!" | ||||||
|         exit 1 |         exit 1 | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Jeremy Whitlock
					Jeremy Whitlock