File tree Expand file tree Collapse file tree 4 files changed +24
-12
lines changed Expand file tree Collapse file tree 4 files changed +24
-12
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ variables:
31
31
- template : ci/variables/build.yml@eng
32
32
- template : ci/variables/cfs.yml@eng
33
33
- name : codeql.language
34
- value : java,powershell
34
+ value : java,powershell,csharp
35
35
- name : codeql.buildIdentifier
36
36
value : java_worker_official
37
37
- name : codeql.excludePathPatterns
@@ -53,10 +53,13 @@ extends:
53
53
- stage : TestWindows
54
54
dependsOn : Build
55
55
jobs :
56
- - template : /eng/ci/templates/official/jobs/run-e2e-tests-windows.yml@self
56
+ - template : /eng/ci/templates/jobs/run-emulated-tests-windows.yml@self
57
+ parameters :
58
+ poolName : 1es-pool-azfunc
57
59
58
60
- stage : TestLinux
59
- dependsOn :
60
- - TestWindows
61
+ dependsOn : Build
61
62
jobs :
62
- - template : /eng/ci/templates/official/jobs/run-e2e-tests-linux.yml@self
63
+ - template : /eng/ci/templates/jobs/run-emulated-tests-linux.yml@self
64
+ parameters :
65
+ poolName : 1es-pool-azfunc
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ resources:
26
26
27
27
variables :
28
28
- name : codeql.language
29
- value : java,powershell
29
+ value : java,powershell,csharp
30
30
- name : codeql.buildIdentifier
31
31
value : java_worker_public
32
32
- name : codeql.excludePathPatterns
@@ -53,9 +53,12 @@ extends:
53
53
dependsOn : Build
54
54
jobs :
55
55
- template : /eng/ci/templates/jobs/run-emulated-tests-windows.yml@self
56
+ parameters :
57
+ poolName : 1es-pool-azfunc-public
56
58
57
59
- stage : TestLinux
58
- dependsOn :
59
- - TestWindows
60
+ dependsOn : Build
60
61
jobs :
61
62
- template : /eng/ci/templates/jobs/run-emulated-tests-linux.yml@self
63
+ parameters :
64
+ poolName : 1es-pool-azfunc-public
Original file line number Diff line number Diff line change
1
+ parameters :
2
+ poolName : ' '
3
+
1
4
jobs :
2
5
- job : " TestLinux"
3
6
displayName : ' Test java worker - Linux'
4
7
5
8
pool :
6
- name : 1es-pool-azfunc-public
9
+ name : ${{ parameters.poolName }}
7
10
image : 1es-ubuntu-22.04
8
11
os : linux
9
12
14
17
ApplicationInsightAgentVersion : 3.5.4
15
18
16
19
strategy :
17
- maxParallel : 1
20
+ maxParallel : 4
18
21
matrix :
19
22
open-jdk-8-linux :
20
23
JDK_DOWNLOAD_LINK : ' https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u392-b08/OpenJDK8U-jdk_x64_linux_hotspot_8u392b08.tar.gz'
Original file line number Diff line number Diff line change
1
+ parameters :
2
+ poolName : ' '
3
+
1
4
jobs :
2
5
- job : " TestWindows"
3
6
displayName : ' Test java worker - Windows'
4
7
5
8
pool :
6
- name : 1es-pool-azfunc-public
9
+ name : ${{ parameters.poolName }}
7
10
image : 1es-windows-2022
8
11
os : windows
9
12
14
17
ApplicationInsightAgentVersion : 3.5.4
15
18
16
19
strategy :
17
- maxParallel : 1
20
+ maxParallel : 4
18
21
matrix :
19
22
open-jdk-8-windows :
20
23
JDK_DOWNLOAD_LINK : ' https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u392-b08/OpenJDK8U-jdk_x64_windows_hotspot_8u392b08.zip'
You can’t perform that action at this time.
0 commit comments