File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ trigger: none
88jobs :
99 - job : " End_to_end_integration_tests"
1010 variables :
11- ApplicationInsightAgentVersion : 3.4.19
11+ ApplicationInsightAgentVersion : 3.5.1
1212 displayName : ' End to end integration tests'
1313 strategy :
1414 maxParallel : 1
@@ -115,7 +115,7 @@ jobs:
115115 displayName: 'Package Java for E2E'
116116
117117 - pwsh : | # Download JDK for later installation
118- Invoke-WebRequest $(JDK_DOWNLOAD_LINK) -O "$(JAVA_VERSION).tar.gz"
118+ Invoke-WebRequest $(JDK_DOWNLOAD_LINK) -OutFile "$(JAVA_VERSION).tar.gz"
119119 $current = get-location | select -ExpandProperty Path
120120 Write-Host "##vso[task.setvariable variable=downloadPath;]$current"
121121 displayName: 'Download jdk for Linux'
@@ -131,7 +131,7 @@ jobs:
131131 condition : eq( variables['Agent.OS'], 'Linux' )
132132 displayName : ' Setup Java for Linux'
133133 - pwsh : |
134- Invoke-WebRequest $(JDK_DOWNLOAD_LINK) -O "$(JAVA_VERSION).zip"
134+ Invoke-WebRequest $(JDK_DOWNLOAD_LINK) -OutFile "$(JAVA_VERSION).zip"
135135 Expand-Archive -Force "$(JAVA_VERSION).zip" .
136136 cd $(JDK_PATH)
137137 $current = get-location | select -ExpandProperty Path
Original file line number Diff line number Diff line change 8282 dependsOn : Build
8383 variables :
8484 buildNumber : $[ dependencies.Build.outputs['output.buildNumber'] ]
85- ApplicationInsightAgentVersion : 3.4.19
85+ ApplicationInsightAgentVersion : 3.5.1
8686 strategy :
8787 maxParallel : 1
8888 matrix :
@@ -160,7 +160,7 @@ jobs:
160160 inputs :
161161 version : 6.0.x
162162 - pwsh : | # Download JDK for later installation
163- Invoke-WebRequest $(JDK_DOWNLOAD_LINK) -O "$(JAVA_VERSION).tar.gz"
163+ Invoke-WebRequest $(JDK_DOWNLOAD_LINK) -OutFile "$(JAVA_VERSION).tar.gz"
164164 $current = get-location | select -ExpandProperty Path
165165 Write-Host "##vso[task.setvariable variable=downloadPath;]$current"
166166 displayName: 'Download jdk for Linux'
@@ -176,7 +176,7 @@ jobs:
176176 condition : eq( variables['Agent.OS'], 'Linux' )
177177 displayName : ' Setup Java for Linux'
178178 - pwsh : |
179- Invoke-WebRequest $(JDK_DOWNLOAD_LINK) -O "$(JAVA_VERSION).zip"
179+ Invoke-WebRequest $(JDK_DOWNLOAD_LINK) -OutFile "$(JAVA_VERSION).zip"
180180 Expand-Archive -Force "$(JAVA_VERSION).zip" .
181181 cd $(JDK_PATH)
182182 $current = get-location | select -ExpandProperty Path
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ function StopOnFailedExecution {
1010 }
1111}
1212
13- $ApplicationInsightsAgentVersion = ' 3.4.19 '
13+ $ApplicationInsightsAgentVersion = ' 3.5.1 '
1414$ApplicationInsightsAgentFilename = " applicationinsights-agent-${ApplicationInsightsAgentVersion} .jar"
1515$ApplicationInsightsAgentUrl = " https://repo1.maven.org/maven2/com/microsoft/azure/applicationinsights-agent/${ApplicationInsightsAgentVersion} /${ApplicationInsightsAgentFilename} "
1616
Original file line number Diff line number Diff line change 2929
3030$FUNC_CLI_DIRECTORY = Join-Path $PSScriptRoot ' Azure.Functions.Cli'
3131
32- $ApplicationInsightsAgentVersion = ' 3.4.19 '
32+ $ApplicationInsightsAgentVersion = ' 3.5.1 '
3333$ApplicationInsightsAgentFilename = " applicationinsights-agent-${ApplicationInsightsAgentVersion} .jar"
3434$ApplicationInsightsAgentUrl = " https://repo1.maven.org/maven2/com/microsoft/azure/applicationinsights-agent/${ApplicationInsightsAgentVersion} /${ApplicationInsightsAgentFilename} "
3535
You can’t perform that action at this time.
0 commit comments