File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ trigger: none
8
8
jobs :
9
9
- job : " End_to_end_integration_tests"
10
10
variables :
11
- ApplicationInsightAgentVersion : 3.4.19
11
+ ApplicationInsightAgentVersion : 3.5.1
12
12
displayName : ' End to end integration tests'
13
13
strategy :
14
14
maxParallel : 1
@@ -115,7 +115,7 @@ jobs:
115
115
displayName: 'Package Java for E2E'
116
116
117
117
- 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"
119
119
$current = get-location | select -ExpandProperty Path
120
120
Write-Host "##vso[task.setvariable variable=downloadPath;]$current"
121
121
displayName: 'Download jdk for Linux'
@@ -131,7 +131,7 @@ jobs:
131
131
condition : eq( variables['Agent.OS'], 'Linux' )
132
132
displayName : ' Setup Java for Linux'
133
133
- pwsh : |
134
- Invoke-WebRequest $(JDK_DOWNLOAD_LINK) -O "$(JAVA_VERSION).zip"
134
+ Invoke-WebRequest $(JDK_DOWNLOAD_LINK) -OutFile "$(JAVA_VERSION).zip"
135
135
Expand-Archive -Force "$(JAVA_VERSION).zip" .
136
136
cd $(JDK_PATH)
137
137
$current = get-location | select -ExpandProperty Path
Original file line number Diff line number Diff line change 82
82
dependsOn : Build
83
83
variables :
84
84
buildNumber : $[ dependencies.Build.outputs['output.buildNumber'] ]
85
- ApplicationInsightAgentVersion : 3.4.19
85
+ ApplicationInsightAgentVersion : 3.5.1
86
86
strategy :
87
87
maxParallel : 1
88
88
matrix :
@@ -160,7 +160,7 @@ jobs:
160
160
inputs :
161
161
version : 6.0.x
162
162
- 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"
164
164
$current = get-location | select -ExpandProperty Path
165
165
Write-Host "##vso[task.setvariable variable=downloadPath;]$current"
166
166
displayName: 'Download jdk for Linux'
@@ -176,7 +176,7 @@ jobs:
176
176
condition : eq( variables['Agent.OS'], 'Linux' )
177
177
displayName : ' Setup Java for Linux'
178
178
- pwsh : |
179
- Invoke-WebRequest $(JDK_DOWNLOAD_LINK) -O "$(JAVA_VERSION).zip"
179
+ Invoke-WebRequest $(JDK_DOWNLOAD_LINK) -OutFile "$(JAVA_VERSION).zip"
180
180
Expand-Archive -Force "$(JAVA_VERSION).zip" .
181
181
cd $(JDK_PATH)
182
182
$current = get-location | select -ExpandProperty Path
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ function StopOnFailedExecution {
10
10
}
11
11
}
12
12
13
- $ApplicationInsightsAgentVersion = ' 3.4.19 '
13
+ $ApplicationInsightsAgentVersion = ' 3.5.1 '
14
14
$ApplicationInsightsAgentFilename = " applicationinsights-agent-${ApplicationInsightsAgentVersion} .jar"
15
15
$ApplicationInsightsAgentUrl = " https://repo1.maven.org/maven2/com/microsoft/azure/applicationinsights-agent/${ApplicationInsightsAgentVersion} /${ApplicationInsightsAgentFilename} "
16
16
Original file line number Diff line number Diff line change 29
29
30
30
$FUNC_CLI_DIRECTORY = Join-Path $PSScriptRoot ' Azure.Functions.Cli'
31
31
32
- $ApplicationInsightsAgentVersion = ' 3.4.19 '
32
+ $ApplicationInsightsAgentVersion = ' 3.5.1 '
33
33
$ApplicationInsightsAgentFilename = " applicationinsights-agent-${ApplicationInsightsAgentVersion} .jar"
34
34
$ApplicationInsightsAgentUrl = " https://repo1.maven.org/maven2/com/microsoft/azure/applicationinsights-agent/${ApplicationInsightsAgentVersion} /${ApplicationInsightsAgentFilename} "
35
35
You can’t perform that action at this time.
0 commit comments