Add Support for Linux arm64 Builds (#274)

* Included ubuntu-arm64 in  Build Python package yml

* Updated builder and installer scripts

* Updated test scripts

* Modified test file

* Replaced macos-11 with macos-13

* Update build-python-packages.yml
This commit is contained in:
Priya Gupta
2024-06-13 19:47:40 +05:30
committed by GitHub
parent 1c85886f9c
commit cb2aecd6d9
4 changed files with 7 additions and 5 deletions

View File

@@ -97,6 +97,7 @@ class NixPythonBuilder : PythonBuilder {
$variablesToReplace = @{
"{{__VERSION_FULL__}}" = $this.Version;
"{{__ARCH__}}" = $this.Architecture;
}
$variablesToReplace.keys | ForEach-Object { $installationTemplateContent = $installationTemplateContent.Replace($_, $variablesToReplace[$_]) }