-
-
Notifications
You must be signed in to change notification settings - Fork 4
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 Dockerfile for arm64 compilation #973
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #973 +/- ##
=======================================
Coverage 96.72% 96.72%
=======================================
Files 45 45
Lines 641 641
Branches 71 71
=======================================
Hits 620 620
Misses 7 7
Partials 14 14
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
/deploy dev |
Add a Dockerfile to compile for arm64 AoT on GitHub Actions (until they have a native arm64 runner).
7bf8712
to
29c9fc7
Compare
/deploy dev |
AoT on x86_64: Published size: 39.1MB; 4 files
AoT on arm64: Published size: 39.2MB; 4 files
TL;DR:
Published size: +4% |
Ensure that the .NET SDK in global.json is installed on the Docker image to account for lag between new release and Docker image publishing.
Cross-architecture compile for arm64 on GitHub Actions' ubuntu-latest hosted runner. See https://learn.microsoft.com/dotnet/core/deploying/native-aot/cross-compile#linux. Effectively a revert of #973.
Cross-architecture compile for arm64 on GitHub Actions' ubuntu-latest hosted runner without using Docker. See https://learn.microsoft.com/dotnet/core/deploying/native-aot/cross-compile#linux. Effectively a revert of #973. Also explicitly specify using bash as the shell where appropriate.
Add a Dockerfile to compile for arm64 AoT on GitHub Actions (until they have a native arm64 runner).