another round of improvements

This commit is contained in:
Mikhail Koliada
2022-01-14 19:53:00 +03:00
parent 3792b6282a
commit 41f641758a
2 changed files with 15 additions and 13 deletions

View File

@ -41,8 +41,11 @@ class PythonBuilder {
PythonBuilder ([semver] $version, [string] $architecture, [string] $platform) {
$this.InstallationTemplatesLocation = Join-Path -Path $PSScriptRoot -ChildPath "../installers"
New-Item -Force -Type Directory (Join-Path $env:RUNNER_TEMP "artifact")
New-Item -Force -Type Directory (Join-Path $env:RUNNER_TEMP "work")
$artifactDirectory = Join-Path $env:RUNNER_TEMP "artifact"
$workDirectory = Join-Path $env:RUNNER_TEMP "work"
New-Item -Force -Type Directory $artifactDirectory
New-Item -Force -Type Directory $workDirectory
$this.HostedToolcacheLocation = $env:RUNNER_TOOL_CACHE
$this.TempFolderLocation = $env:RUNNER_TEMP