-
Notifications
You must be signed in to change notification settings - Fork 93
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
Add ARM64 build #1869
Add ARM64 build #1869
Conversation
build-arm64: | ||
strategy: | ||
fail-fast: false | ||
runs-on: ubuntu-20.04 |
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.
There are no arm machines on the list, all available machines are x64 based.
I think GH only supports arm on self hosted runners.
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.
I was trying to work around that with uraimo/[email protected], but I cannot get it working, so I assume we have to wait for gh actions to add support.
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.
Ah I see, it's using QEMU emulator. Might be easier to test that locally first.
.github/workflows/ci.yml
Outdated
apt-get install -y -t stretch-backports libgrpc++-dev libgrpc++1 libgrpc6 libgrpc-dev protobuf-compiler-grpc | ||
curl -sSL https://dot.net/v1/dotnet-install.sh --output dotnet-install.sh | ||
chmod +x ./dotnet-install.sh | ||
./dotnet-install.sh -c 6.0 --install-dir /usr/share/dotnet --no-path |
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.
./dotnet-install.sh -c 6.0 --install-dir /usr/share/dotnet --no-path | |
./dotnet-install.sh -channel 6.0.xxx --install-dir /usr/share/dotnet |
Could try this one. Seems it doesn't know about the installed dotnet versions.
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.
Will do, cheers :)
Closing for now. Not ARM64 env. available. |
Why
Fixes #
What
Tests
Checklist
CHANGELOG.md
is updated.