This is an automated email from the ASF dual-hosted git repository. wilfreds pushed a commit to branch branch-1.8 in repository https://gitbox.apache.org/repos/asf/yunikorn-release.git
commit 50afdfb40b7df72cc8191f7db07a4c8ec1e51894 Author: Wilfred Spiegelenburg <[email protected]> AuthorDate: Thu Jan 15 14:30:15 2026 +1100 [YUNIKORN-3191] remove plugin binary build from release tool (#214) Speed up release build by removing the plugin binary build from the release tool. Publishing the image was removed in YUNIKORN-3187. Closes: #214 Signed-off-by: Wilfred Spiegelenburg <[email protected]> (cherry picked from commit c407c82b6a5c5804adb535cf4cf39a7aac92581c) --- release-tools/build-release.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/release-tools/build-release.py b/release-tools/build-release.py index 040e67e..6e91860 100755 --- a/release-tools/build-release.py +++ b/release-tools/build-release.py @@ -285,13 +285,12 @@ def build_shim_and_generate_hashes(staging_dir, release_name, arch): unpack_staging_tarball(staging_dir, tmp_dir, release_name) shim_dir = os.path.join(release_dir, "k8shim") os.chdir(shim_dir) - retcode = subprocess.call(['make', 'REPRODUCIBLE_BUILDS=1', 'HOST_ARCH=' + arch, 'scheduler', 'plugin', 'admission']) + retcode = subprocess.call(['make', 'REPRODUCIBLE_BUILDS=1', 'HOST_ARCH=' + arch, 'scheduler', 'admission']) if retcode: fail("failed to build yunikorn-k8shim (%s)" % arch) adm_hash = get_checksum("build/bin/yunikorn-admission-controller", "yunikorn-admission-controller") scheduler_hash = get_checksum("build/bin/yunikorn-scheduler", "yunikorn-scheduler") - plugin_hash = get_checksum("build/bin/yunikorn-scheduler-plugin", "yunikorn-scheduler-plugin") - hash = "\n".join([adm_hash, scheduler_hash, plugin_hash]) + hash = "\n".join([adm_hash, scheduler_hash]) os.chdir(staging_dir) retcode = subprocess.call(['rm', '-rf', 'tmp']) if retcode: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
