ci: optimize binary builds in build_and_test workflow#8777
Merged
jukie merged 2 commits intoenvoyproxy:mainfrom Apr 17, 2026
Merged
ci: optimize binary builds in build_and_test workflow#8777jukie merged 2 commits intoenvoyproxy:mainfrom
jukie merged 2 commits intoenvoyproxy:mainfrom
Conversation
Signed-off-by: Shahar Harari <shahar.harari@sap.com>
Signed-off-by: Shahar Harari <shahar.harari@sap.com>
✅ Deploy Preview for cerulean-figolla-1f9435 ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8777 +/- ##
=======================================
Coverage 74.32% 74.32%
=======================================
Files 245 245
Lines 38801 38804 +3
=======================================
+ Hits 28837 28841 +4
+ Misses 7962 7961 -1
Partials 2002 2002 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
Author
|
Codex Review: Didn't find any major issues. Another round soon, please! ℹ️ About Codex in GitHubCodex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback". |
Contributor
Author
|
/retest |
zirain
approved these changes
Apr 17, 2026
jukie
approved these changes
Apr 17, 2026
skos-ninja
pushed a commit
to skos-ninja/envoy-gateway
that referenced
this pull request
May 1, 2026
* ci: optimize binary builds in CI workflow Signed-off-by: Shahar Harari <shahar.harari@sap.com> * skip go build in downstream jobs Signed-off-by: Shahar Harari <shahar.harari@sap.com> --------- Signed-off-by: Shahar Harari <shahar.harari@sap.com> Signed-off-by: Jake Oliver <jake@truelayer.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this PR does / why we need it:
envoy-gatewaybinary (notegctl), with conditional platforms:linux/amd64only on PRs and release branches, bothlinux/amd64andlinux/arm64on main (needed for multi-arch image publish).egctlis built in a new parallelbuild-egctljob forlinux/amd64only.benchmark-testandresilience-testnow download the pre-built binary artifact (same as conformance/e2e), avoiding a redundantgo build.SKIP_GO_BUILDMake variable togolang.mk: when set totrue, thego.build.%target skips compilation. All downstream jobs that download the pre-built artifact setSKIP_GO_BUILD=trueso the Make dependency chain (kube-install-image→image.build→go.build) no longer triggers a redundant rebuild.chmod +x bin/linux/*/envoy-gatewaywildcard across all jobs instead of listing each architecture explicitly.Which issue(s) this PR fixes:
Fixes #8686
Release Notes: No