Add windows arm64 support (#291)

* Update build-python-packages.yml

* windows arm64 support

* Update build-python-packages.yml

* Update build-python-packages.yml

* Update build-python-packages.yml

* Update build-python-packages.yml

* Update build-python-packages.yml
This commit is contained in:
aparnajyothi-y
2024-06-25 23:44:08 +05:30
committed by GitHub
parent 1d2e861434
commit 0e5f00e5d0
2 changed files with 53 additions and 5 deletions

View File

@ -60,6 +60,8 @@ class WinPythonBuilder : PythonBuilder {
} else {
$ArchitectureExtension = ".amd64"
}
}elseif ($this.Architecture -eq "arm64") {
$ArchitectureExtension = "-arm64"
}
return $ArchitectureExtension