-
Notifications
You must be signed in to change notification settings - Fork 81
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
crossbuild attempts to compile unsupported openbsd-armv5 #65
Comments
Sounds good to me. I actually don't understand how we translate arm to arm5/arm6/arm7. |
@grobie Nothing special, a hard-coded in the golang-builder / arm image. |
@sdurrheimer So that means we can't easily just disable openbsd support vor ARMv5, but leave Linux support for ARMv5, right? Any suggestion how to handle this? |
Need to rethink a little bit the system. I wasn't aware of such incompatibilities. I didn't play much with ARM. |
Alternatively, maybe we can just disable all ARMv5 builds. @discordianfish Do you know whether ARMv5 is still widely in use? |
It is, at least RPI 1+2 are armv5 |
Looking at this page
Am I right ? |
That seems correct. As things change we can always update support, too. |
Cool, so we can just replicate that matrix in the golang builder and fix this here? |
I'm working on it, need to update both |
+ providing retro-compatibility with existing .promu.yml files via aliases
+ providing retro-compatibility with existing .promu.yml files via aliases
Fix prometheus/promu#65 by compiling only provided ARM platforms
Fix #65 by building only ARM compatible platforms
Crossbuild for master in alertmanager is failing on openbsd-armv5:
https://circleci.com/gh/prometheus/alertmanager/619
Looking at package
x/sys/unix
, the files the expected file for these definitionsx/sys/unix/ztypes_openbsd_arm.go
does not exist.Checking against the site for supported platforms, they only have armv7:
https://www.openbsd.org/plat.html
Seems like this should be removed from the crossbuild?
The text was updated successfully, but these errors were encountered: