-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CI] opentelemetry-collector-contrib builds linux/arm64 binary with wrong arm version #29542
Comments
I believe this is coming from here. Blame shows it was updated to version 7 a few months ago here. Can you provide more context as to why it should be 8 instead? From documentation it looks like 8 isn't a valid value, unless I'm missing something. |
it's possible it should not be set, but arm 64 bit is armv8. |
Good point, it looks like when |
This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping |
This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping |
This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping |
I think this is basically almost a typo. The PR #23436 tried to add a single matrix entry to the - os: linux
- arch: arm
- arm: 7 This should have been: - os: linux
arch: arm
arm: 7 I will file a PR to fix that. |
Since this is an older issue, I'll ping @crobert-1 here :) |
**Description:** <Describe what has changed.> This PR fixes a small issue in the `cross-compile` pipeline job. #23436 aimed to introduce a new specific matrix configuration that built for linux/arm with ARMv7 but accidentally built all arm jobs with ARMv7 with some magic of YAML and GitHub actions matrix definitions 😇 **Link to tracking Issue:** #29542 **Testing:** not sure how to test, since this is just pipeline changes **Documentation:** no docs added Signed-off-by: Moritz Wiesinger <moritz.wiesinger@dynatrace.com>
Component(s)
No response
What happened?
See https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7021964134/job/19105712226 as example.
It runs:
It should run:
Collector version
latest
Environment information
Environment
OS: (e.g., "Ubuntu 20.04")
Compiler(if manually compiled): (e.g., "go 14.2")
OpenTelemetry Collector configuration
No response
Log output
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: