File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,6 +101,16 @@ jobs:
101101 run : dotnet tool install --tool-path . nbgv
102102 - name : Set Version
103103 run : ./nbgv cloud
104+ - name : Install linux-arm64 NativeAOT toolchain
105+ if : ${{ matrix.os == 'ubuntu-latest' && matrix.dotnet-arch == 'arm64' }}
106+ run : |
107+ sudo dpkg --add-architecture arm64
108+ sudo apt-get update
109+ sudo apt-get install -y \
110+ clang llvm lld \
111+ binutils-aarch64-linux-gnu \
112+ gcc-aarch64-linux-gnu g++-aarch64-linux-gnu \
113+ zlib1g-dev:arm64
104114 - name : Publish SelfContained CLI
105115 run : dotnet publish MSStore.CLI --self-contained -r ${{ matrix.dotnet-os }}-${{ matrix.dotnet-arch }} -f ${{ matrix.dotnet-framework }} /p:Configuration=Release /p:PublishProfile=${{ matrix.dotnet-os }}-${{ matrix.dotnet-arch }}
106116 - run : |
You can’t perform that action at this time.
0 commit comments