-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathCreate-Venv.ps1
More file actions
40 lines (34 loc) · 1.36 KB
/
Create-Venv.ps1
File metadata and controls
40 lines (34 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<#!
.SYNOPSIS
Creates a virtual environment for a CI machine.
.DESCRIPTION
If the virtual environment directory already exists, it will skip the creation. The location of the virtual environment will be stored in a variable
named <VenvName>_LOCATION. The location will be RepoRoot + VenvName.
.PARAMETER VenvName
The name of the virtual environment which will be created.
.PARAMETER RepoRoot
The root of the repository.
#>
param(
[string] $VenvName = "venv"
)
$repoRoot = Join-Path $PSScriptRoot ".." ".." -Resolve
$venvPath = Join-Path $repoRoot $VenvName
if (!(Test-Path $venvPath)) {
if (Get-Command uv -ErrorAction SilentlyContinue) {
Write-Host "Creating virtual environment '$VenvName' using uv."
uv venv $venvPath --verbose
}
else {
$invokingPython = (Get-Command "python").Source
Write-Host "Creating virtual environment '$VenvName' using virtualenv and python located at '$invokingPython'."
python -m pip install virtualenv==20.25.1
python -m virtualenv $venvPath
}
$pythonVersion = python --version
Write-Host "Virtual environment '$VenvName' created at directory path '$venvPath' utilizing python version $pythonVersion."
Write-Host "##vso[task.setvariable variable=$($VenvName)_LOCATION]$venvPath"
}
else {
Write-Host "Virtual environment '$VenvName' already exists. Skipping creation."
}