Skip to content
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

Closed
wants to merge 14 commits into from
Prev Previous commit
Next Next commit
Fix indentation
dszmigielski committed Dec 28, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit d1c7b4b15918d56fd6ebef1daae549ccfed30f3f
27 changes: 14 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -96,19 +96,20 @@ jobs:
timeout-minutes: 60
steps:
- uses: actions/checkout@v3.2.0
- uses: uraimo/run-on-arch-action@v2.5.0
with:
arch: aarch64
distro: bullseye
run: |
apt-get update
apt-get upgrade
apt-get install wget -y
wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
apt-get update && apt-get install -y dotnet-sdk-6.0 && apt-get install -y dotnet-sdk-7.0
./build.sh Workflow --containers linux
- name: Build ARM64
uses: uraimo/run-on-arch-action@v2.5.0
with:
arch: aarch64
distro: bullseye
run: |
apt-get update
apt-get upgrade
apt-get install wget -y
wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
apt-get update && apt-get install -y dotnet-sdk-6.0 && apt-get install -y dotnet-sdk-7.0
./build.sh Workflow --containers linux
- name: Publish ARM64 build
uses: actions/upload-artifact@v3.1.1
with: