robot-ranger

Results 41 comments of robot-ranger

i must be reading my action's logs wrong; im reading that my runs are failing building linux/amd64?

yup - its the amd64 build that is failing, not arm64. Which is even weirder. cross-compile works, but native arch doesnt? 🤔 🤷 I removed `linux/amd64` in my workflow file...

> Not sure if we can build on GitHub using ARM architecture and then push using build instead of buildx. We looked into that recently, I don't believe github offers...

Looks like public github-hosted arm runners are coming "this year" : https://github.com/orgs/community/discussions/73040

we are building both amd and arm, into alpine images, with qemu on github for our other projects, and they build fine. so this is something to do with conan/boost...

For now, I am building the alpine image for arm64 in my fork since it appears the amd64 is what is failing, arm64 seems to build fine. if anyone wants/needs...

The crazy thing is the cross compiling is the part that is working! ARM64 builds fine. AMD64 is failing. Just so I don't duplicate work, have we tried building AMD...

found this the other day: https://learn.arm.com/learning-paths/cross-platform/github-arm-runners/actions/

i ran a build with both arch, buildx and qemu today. used [build-docker-image.yml](https://github.com/mtconnect/cppagent/blob/main/.github/workflows/build-docker-image.yml) with the following changes: - un-commented `,linux/arm64` - replaced `- dockerfile: docker/ubuntu/Dockerfile` with `- dockerfile: docker/alpine/Dockerfile` seems...

Currently running a build with github-hosted arm runner. building "native" images; no QEMU involved (commented out the whole qemu step) both arch are well into the build phase, seems to...