actions / setup-dotnet

Set up your GitHub Actions workflow with a specific version of the .NET core sdk
MIT License
919 stars 454 forks source link

Add support for loongarch64 architecture #451

Closed chenguohui closed 10 months ago

chenguohui commented 10 months ago

Description: loongarch64 binaries are not distributed via dotnetcli.azureedge.net, it is possible to get them from a custom feed. When preparing a tarball for the source build, one could use this as following:

externals/install-dotnet.sh --no-cdn --uncached-feed /path/to/feed ...

nikolai-laevskii commented 10 months ago

Thank you for making a pull request and apologies for the late response! Install scripts are external and are automatically fetched from the official resources (https://dot.net/v1/dotnet-install.sh, https://dot.net/v1/dotnet-install.ps1). Therefore, making changes in this repository will not give a desired effect because scripts will be updated and restored to the original state. You can, however, introduce these changes into the official dotnet/install-scripts repository.

After your changes are accepted you will be able to speed up process of getting updated scripts in setup-dotnet by filing a pull request with updated scripts. For that simply run following command within your forked repository and make another pull request with changes.

npm i && npm run update-installers
chenguohui commented 10 months ago

@nikolai-laevskii Thank you!