From dc03d91f7c4665ea0a42d8aafdedb32c9f6becc3 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Mon, 17 Mar 2025 15:09:37 -0700 Subject: [PATCH] Remove binary generation from build script --- .ci/build | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.ci/build b/.ci/build index bfe8f2760..16ad69bcc 100755 --- a/.ci/build +++ b/.ci/build @@ -36,22 +36,4 @@ fi wrap mv "${gem}" "${dest}" \ "Failed to relocate Vagrant RubyGem" -info "Installing submodules for vagrant-go build..." -wrap git submodule update --init --recursive \ - "Failed to install git submodules" - -info "Building vagrant-go linux binaries..." -# Build vagrant-go binaries -wrap make bin/linux \ - "Failed to build the Vagrant go linux binaries" - -info "Building vagrant-go darwin binaries..." -# Build darwin binary -wrap make bin/darwin \ - "Failed to build the Vagrant go darwin amd64 binary" - -info "Relocating vagrant-go binaries..." -wrap mv bin/vagrant-go* "${dest}" \ - "Failed to relocate vagrant binaries to destination directory" - printf "build-artifacts-path=%s\n" "${dest}"