-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unifiy build process up and downstream
This patch changes the upstream image-build target and Dockerfile to no longer do a staged build, building VM Op inside of the container. Instead, the binaries are now built prior to building the container. This, as well as a few other changes to the version variables in the Makefile, allow the up and downstream build processes for VM Op to be unified. Now the internal process can invoke the following to build VM Op from the upstream Makefile: ADDITIONAL_CRI_BUILD_FLAGS="--network=host" \ BASE_IMAGE="<INTERNAL_CONTAINER_IMAGE>" \ BUILD_BRANCH="$(BUILD_BRANCH)" \ BUILD_COMMIT="$(BUILD_COMMIT)" \ BUILD_NUMBER="$(BUILD_NUMBER)" \ BUILD_VERSION="$(BUILD_VERSION)" \ IMAGE="$(IMAGE)" \ IMAGE_TAG="$(IMAGE_TAG)" \ IMAGE_VERSION="$(IMAGE_VERSION)" \ PRDCT_VERSION="$(PRDCT_VERSION)" \ make image-build-amd64 This patch also removes the GitHub jobs for building the manager and web console validator binaries as both are built as part of the "build-image" job.
- Loading branch information
Showing
5 changed files
with
117 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
bin/ | ||
*.tar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.