[23.0 backport] scripts/build/plugins: don't override CGO_ENABLED set by .variables#5398
Closed
thaJeztah wants to merge 0 commit intodocker:23.0from
Closed
[23.0 backport] scripts/build/plugins: don't override CGO_ENABLED set by .variables#5398thaJeztah wants to merge 0 commit intodocker:23.0from
thaJeztah wants to merge 0 commit intodocker:23.0from
Conversation
Member
Author
|
Not sure what this failure is; perhaps github actions need to be updated in this branch? |
Contributor
|
@thaJeztah the latest codecov uploader for macOS is built for arm64, which fails with -EBADARCH on Intel macs. Migrating to the v4 action might work as it uses the codecov cli instead of the uploader. Or simply pin to a release of the uploader that was built for Intel macs |
5fe96b1 to
6ff84b8
Compare
Member
Author
|
this was already backported through #5400 |
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.
The
.variablessetsCGO_ENABLED=1on arm;cli/scripts/build/.variables
Lines 57 to 68 in b0c41b7
-buildmode=pie;cli/scripts/build/.variables
Lines 79 to 88 in b0c41b7
But that looks to be conflicting with the hardcoded
CGO_ENABLED=0in this script, which causes the build to fail on go1.22;This patch sets the CGO_ENABLED variable before sourcing
.variables, so that other variables which are conditionally set are handled correctly.Before this PR:
With this PR:
(cherry picked from commit 9e29967)