-
Notifications
You must be signed in to change notification settings - Fork 28
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
Multiarch build #8
Conversation
bypass plugin/base as image base
The docker image plugin/base did not support ppc64le, but it's base alpine does. With commit bf68209 I chose to bypass plugin/base as the base image and instead build from alpine directly. I merged the 'apk add' command with the packages that plugin/base and woodpecker-ci/plugin-git were including. |
With some minor changes I was able to get the woodpecker/plugin-docker-buildx image created. I tested it locally on my machine and it was able to build the plugin-git image for multiple architectures. |
Thanks for the adjustments to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice work
I was looking for a way to run the Woodpecker agent on my Raspberry Pi. The first issue I had was that the plugin-git is not currently built for ARM. I was looking for a way to build my own and made these modifications to use Docker buildx to create a Multi-arch build.
I saw issue #3 and thought this was a good first step.
closes #3