-
Notifications
You must be signed in to change notification settings - Fork 174
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 ARM #254
CI ARM #254
Conversation
@kraszkow done! I was travelling sorry |
Thanks @johnnynunez ! Would you mind adding also testing jobs to ARM (on CPU) to this PR? |
Done |
if you can do new release with new .tar.gz aarch64 files... asap |
First of all - thank you for your contribution - it's merged!
Thanks for your request. Generating a new release that includes ARM64 Linux binaries isn't as straightforward as it might seem. It's not just a technical challenge—we also have internal considerations that require extra effort on our side. |
This pull request includes several changes to the
.github/workflows/external.ci.yml
file to enhance the CI pipeline by adding support for ARM builds and cleaning up existing job definitions.Enhancements to CI pipeline:
build-cpu-rocky-8-arm
to support ARM architecture usingarm64v8/rockylinux:8
container. This includes steps to install necessary packages, checkout the repository, build the project, and upload the build artifacts.build-cpu-ubuntu-2204-arm
to support ARM architecture usingarm64v8/ubuntu:22.04
container. This includes steps to install necessary packages, checkout the repository, build the project, and upload the build artifacts.Cleanup:
test-cpu-rocky-8
andtest-cpu-ubuntu-2204
jobs. [1] [2]test-cpu-rocky-8
andtest-cpu-ubuntu-2204
job definitions for better readability. [1] [2]