[Backport release-2.4] projects: Correctly build multi-arch Python functions#194
Open
github-actions[bot] wants to merge 4 commits into
Open
[Backport release-2.4] projects: Correctly build multi-arch Python functions#194github-actions[bot] wants to merge 4 commits into
github-actions[bot] wants to merge 4 commits into
Conversation
goconst detects duplicated constants and forces us to declare them as consts. This is unhelpful when the majority of occurences are in test fixtures. Signed-off-by: Adam Wolfe Gordon <awg@upbound.io> (cherry picked from commit 0a934c5)
Even though Python is interpreted, Python function images include some platform-specific shared libraries. Previously, we were building only for the host architecture (e.g., arm64 on macOS), which meant we ended up with incompatible shared libraries in the resulting function image. Update the Python SDK builder to produce a layer per architecture, each containing the correct shared libraries for that architecture. Note that the builder image is always the host architecture - we don't want to assume the user has qemu or any other way to run non-native containers. Signed-off-by: Adam Wolfe Gordon <awg@upbound.io> (cherry picked from commit 3a98cc4)
Signed-off-by: Adam Wolfe Gordon <awg@upbound.io> (cherry picked from commit a3522cb)
Signed-off-by: Adam Wolfe Gordon <awg@upbound.io> (cherry picked from commit f059e20)
3 tasks
adamwg
approved these changes
Jul 14, 2026
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.
Description
Backport of #192 to
release-2.4.