-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage-pipeline.ps1
159 lines (129 loc) · 6.29 KB
/
package-pipeline.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
param (
[string]$buildNumber
)
# A helper function that stops the entire script if the last command failed.
function StopOnFailedExecution {
if ($LastExitCode) {
exit $LastExitCode
}
}
# --------------------------------------------------------------------
# Build the azure-functions-java-worker (using the "appinsights" profile)
# --------------------------------------------------------------------
Write-Host "=== Building azure-functions-java-worker with 'appinsights' profile ==="
mvn clean package --no-transfer-progress -B -P appinsights
StopOnFailedExecution
# --------------------------------------------------------------------
# Prepare the final "pkg" folder and copy core worker artifacts
# --------------------------------------------------------------------
Write-Host "`n=== Creating NuGet package: Microsoft.Azure.Functions.JavaWorker ==="
Write-Host "Using buildNumber: $buildNumber"
# Ensure 'nuget' command is available
Get-Command nuget | Out-Null
StopOnFailedExecution
Write-Host "Removing old 'pkg' folder (if present)..."
Remove-Item -Recurse -Force -ErrorAction Ignore .\pkg
Write-Host "Creating new 'pkg' folder..."
New-Item -ItemType Directory -Path .\pkg | Out-Null
Write-Host "Copying azure-functions-java-worker.jar to 'pkg'..."
Get-ChildItem -Path .\target\* -Include 'azure*' -Exclude '*shaded.jar','*tests.jar' |
ForEach-Object { Copy-Item $_.FullName .\pkg\azure-functions-java-worker.jar }
StopOnFailedExecution
Write-Host "Copying supporting files into 'pkg' folder..."
Copy-Item .\worker.config.json .\pkg\
Copy-Item .\tools\AzureFunctionsJavaWorker.nuspec .\pkg\
Copy-Item .\annotationLib .\pkg\annotationLib -Recurse
# --------------------------------------------------------------------
# Locate the Application Insights agent built by the Maven profile
# --------------------------------------------------------------------
$AgentSourcePath = Join-Path $PSScriptRoot 'target\agent\applicationinsights-agent.jar'
if (!(Test-Path -Path $AgentSourcePath)) {
Write-Host "`nERROR: Application Insights agent not found at '$AgentSourcePath'."
Write-Host "Make sure you enabled the 'appinsights' Maven profile."
exit 1
}
# --------------------------------------------------------------------
# Create a local 'agent' folder and copy the agent jar there
# --------------------------------------------------------------------
Write-Host "`n=== Setting up the agent folder ==="
$AgentFolder = Join-Path $PSScriptRoot 'agent'
$AgentFilename = 'applicationinsights-agent.jar'
$PackagedAgentFile = Join-Path $AgentFolder $AgentFilename
Write-Host "Removing old 'agent' folder (if present)..."
if (Test-Path -Path $AgentFolder) {
Remove-Item -Recurse -Force $AgentFolder
}
Write-Host "Creating a new 'agent' folder..."
New-Item -ItemType Directory -Path $AgentFolder | Out-Null
Write-Host "Copying agent from '$AgentSourcePath' to '$PackagedAgentFile'..."
Copy-Item $AgentSourcePath -Destination $PackagedAgentFile
StopOnFailedExecution
# --------------------------------------------------------------------
# Remove signature files and adjust MANIFEST.MF in-place (no full extraction)
# --------------------------------------------------------------------
Write-Host "`n=== Removing signature files from '$PackagedAgentFile' ==="
# Load .NET assemblies for ZipArchive on Windows
Add-Type -AssemblyName System.IO.Compression, System.IO.Compression.FileSystem
$fileStream = [System.IO.File]::Open($PackagedAgentFile, [System.IO.FileMode]::Open)
$zipArchive = New-Object System.IO.Compression.ZipArchive($fileStream, [System.IO.Compression.ZipArchiveMode]::Update)
try {
Write-Host "Deleting signature files from META-INF..."
$entriesToRemove = $zipArchive.Entries | Where-Object {
$_.FullName -like "META-INF/MSFTSIG.*" `
-or $_.FullName -like "META-INF/*.SF" `
-or $_.FullName -like "META-INF/*.RSA" `
-or $_.FullName -like "META-INF/*.DSA"
}
foreach ($entry in $entriesToRemove) {
Write-Host " Removing: $($entry.FullName)"
$entry.Delete()
}
Write-Host "Checking MANIFEST.MF for extra signature references..."
$manifestEntry = $zipArchive.Entries | Where-Object { $_.FullName -eq "META-INF/MANIFEST.MF" }
if ($manifestEntry) {
$reader = New-Object System.IO.StreamReader($manifestEntry.Open())
$manifestContent = $reader.ReadToEnd()
$reader.Close()
# Regex to remove blank line(s) after the main attributes
$pattern = '(?sm)^(.*?\r?\n)\r?\n'
$matches = [regex]::Matches($manifestContent, $pattern)
if ($matches.Count -gt 0) {
Write-Host " Removing signature-related lines after main attributes."
$cleanedManifest = $matches[0].Groups[1].Value
$manifestEntry.Delete()
$newManifestEntry = $zipArchive.CreateEntry("META-INF/MANIFEST.MF")
$writer = New-Object System.IO.StreamWriter($newManifestEntry.Open())
$writer.Write($cleanedManifest)
$writer.Flush()
$writer.Close()
Write-Host " MANIFEST.MF updated successfully."
}
else {
Write-Host " No extra blank lines found in MANIFEST.MF."
}
}
else {
Write-Host "No MANIFEST.MF found in the JAR (unexpected?)."
}
}
finally {
# Always dispose archive and file streams
$zipArchive.Dispose()
$fileStream.Dispose()
}
Write-Host "Done removing signature files from '$PackagedAgentFile'."
# --------------------------------------------------------------------
# Add 'functions.codeless' marker and copy agent folder to 'pkg'
# --------------------------------------------------------------------
Write-Host "`n=== Creating 'functions.codeless' marker file ==="
New-Item -Path $AgentFolder -Name "functions.codeless" -ItemType File | Out-Null
Write-Host "Copying 'agent' folder into the 'pkg' folder..."
Copy-Item $AgentFolder (Join-Path $PSScriptRoot 'pkg\agent') -Recurse -Force -Verbose
# --------------------------------------------------------------------
# Package everything into the final NuGet package
# --------------------------------------------------------------------
Write-Host "`n=== Creating the NuGet package ==="
Push-Location pkg
nuget pack -Properties version=$buildNumber
Pop-Location
Write-Host "`n=== Script completed successfully. NuGet package created. ==="