forked from Azure/azure-functions-core-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
validateWorkerVersions.ps1
95 lines (82 loc) · 3.57 KB
/
validateWorkerVersions.ps1
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<#
.SYNOPSIS
Used to validate and/or update worker package versions
.EXAMPLE
./validateWorkerVersions.ps1
Validates the workers match the existing host version and throws an error if they don't
.EXAMPLE
./validateWorkerVersions.ps1 -Update -HostVersion 4.0.0
Updates the host reference to 4.0.0 and the workers to their matching versions
#>
param (
[Switch]$Update,
# An explicit host version, otherwise the host version from Azure.Functions.Cli.csproj will be used
[string]$hostVersion
)
# the xml will fail to parse if the data is encoded with a bom character
function removeBomIfExists([string]$data)
{
if ($data.StartsWith(0xFEFF)) {
$data = $data.substring(1)
}
return $data
}
$cliCsprojPath = "$PSScriptRoot/src/Azure.Functions.Cli/Azure.Functions.Cli.csproj"
$cliCsprojContent = removeBomIfExists(Get-Content $cliCsprojPath)
$cliCsprojXml = [xml]$cliCsprojContent
function getPackageVersion([string]$packageName, [string]$csprojContent)
{
$version = (Select-Xml -Content $csprojContent -XPath "/Project//PackageReference[@Include='$packageName']/@Version").ToString()
if (-Not $version) {
throw "Failed to find version for package $packageName"
}
return $version
}
function setCliPackageVersion([string]$packageName, [string]$newVersion)
{
$node = $cliCsprojXml.SelectSingleNode("/Project//PackageReference[@Include='$packageName']")
if (-Not $node) {
throw "Failed to find reference for package $packageName"
}
$oldVersion = $node.Version
$node.Version = $newVersion
Write-Output "Updated $packageName from $oldVersion to $newVersion"
}
$hostPackageName = "Microsoft.Azure.WebJobs.Script.WebHost"
if (-Not $hostVersion) {
$hostVersion = getPackageVersion $hostPackageName $cliCsprojContent
} elseif ($Update) {
setCliPackageVersion $hostPackageName $hostVersion
}
function getHostFileContent([string]$filePath) {
$uri = "https://raw.githubusercontent.com/Azure/azure-functions-host/v$hostVersion/$filePath"
return removeBomIfExists((Invoke-WebRequest -Uri $uri -MaximumRetryCount 5 -RetryIntervalSec 2).Content)
}
$hostCsprojContent = getHostFileContent "src/WebJobs.Script/WebJobs.Script.csproj"
$pythonPropsContent = getHostFileContent "build/python.props"
$workers = "JavaWorker", "NodeJsWorker", "PowerShellWorker.PS7.0", "PowerShellWorker.PS7.2", "PowerShellWorker.PS7.4", "PythonWorker"
$failedValidation = $false
foreach($worker in $workers) {
$packageName = "Microsoft.Azure.Functions.$worker"
if ($worker -eq "PythonWorker") {
$hostWorkerVersion = getPackageVersion $packageName $pythonPropsContent
} else {
$hostWorkerVersion = getPackageVersion $packageName $hostCsprojContent
}
$cliWorkerVersion = getPackageVersion $packageName $cliCsprojContent
if ($Update) {
setCliPackageVersion $packageName $hostWorkerVersion
} elseif ($hostWorkerVersion -ne $cliWorkerVersion) {
Write-Output "Reference to $worker in the host ($hostWorkerVersion) does not match version in the cli ($cliWorkerVersion)"
$failedValidation = $true
}
}
if ($Update) {
$cliCsprojXml.Save($cliCsprojPath)
Write-Output "Updated worker versions! 🚀"
} elseif ($failedValidation) {
Write-Output "You can run './validateWorkerVersions.ps1 -Update' locally to fix worker versions."
throw "Not all worker versions matched. 😢 See output for more info"
} else {
Write-Output "Worker versions match! 🥳"
}