File tree Expand file tree Collapse file tree 4 files changed +13
-39
lines changed Expand file tree Collapse file tree 4 files changed +13
-39
lines changed Original file line number Diff line number Diff line change @@ -80,34 +80,6 @@ extends:
80
80
dependsOn : BuildPythonWorker
81
81
jobs :
82
82
- template : /eng/templates/official/jobs/ci-lc-tests.yml@self
83
- - stage : RunWorkerE2ETests
84
- dependsOn : BuildPythonWorker
85
- jobs :
86
- - template : /eng/templates/official/jobs/ci-e2e-tests.yml@self
87
- - stage : RunWorkerEmulatorTests
88
- dependsOn : BuildPythonWorker
89
- jobs :
90
- - template : /eng/templates/jobs/ci-emulator-tests.yml@self
91
- parameters :
92
- PoolName : 1es-pool-azfunc
93
- - stage : RunWorkerUnitTests
94
- dependsOn : BuildPythonWorker
95
- jobs :
96
- - template : /eng/templates/jobs/ci-unit-tests.yml@self
97
- parameters :
98
- PoolName : 1es-pool-azfunc
99
- - stage : RunWorkerDockerConsumptionTests
100
- dependsOn : BuildPythonWorker
101
- jobs :
102
- - template : /eng/templates/official/jobs/ci-docker-consumption-tests.yml@self
103
- - stage : RunWorkerDockerDedicatedTests
104
- dependsOn : BuildPythonWorker
105
- jobs :
106
- - template : /eng/templates/official/jobs/ci-docker-dedicated-tests.yml@self
107
- - stage : RunWorkerLinuxConsumptionTests
108
- dependsOn : BuildPythonWorker
109
- jobs :
110
- - template : /eng/templates/official/jobs/ci-lc-tests.yml@self
111
83
112
84
# Python V2 Library Build and Test Stages
113
85
- stage : BuildV2Library
Original file line number Diff line number Diff line change @@ -189,6 +189,7 @@ steps:
189
189
"proxy_worker/protos/shared/NullableTypes_pb2.py",
190
190
"proxy_worker/protos/shared/NullableTypes_pb2_grpc.py",
191
191
"six.py",
192
+ "uvloop",
192
193
"werkzeug",
193
194
"worker.py"
194
195
)
Original file line number Diff line number Diff line change @@ -118,16 +118,6 @@ steps:
118
118
} else {
119
119
Write-Host "Skipping azurefunctions/ (minorVersion=7)"
120
120
}
121
- # === gRPC check ===
122
- $grpcPattern = "*$(majorVersion)$(minorVersion)*-${{ parameters.grpcBuild }}"
123
- $grpcMatch = Get-ChildItem -Path $cythonDir -Name -ErrorAction SilentlyContinue |
124
- Where-Object { $_ -like $grpcPattern }
125
-
126
- if (-not $grpcMatch) {
127
- $missing += "grpc/_cython/$grpcPattern"
128
- } else {
129
- Write-Host "✅ Found gRPC binary: $grpcMatch"
130
- }
131
121
132
122
$missing = @()
133
123
@@ -137,6 +127,16 @@ steps:
137
127
$missing += $item
138
128
}
139
129
}
130
+ # === gRPC check ===
131
+ $grpcPattern = "*$(majorVersion)$(minorVersion)-${{ parameters.grpcBuild }}"
132
+ $grpcMatch = Get-ChildItem -Path $cythonDir -Name -ErrorAction SilentlyContinue |
133
+ Where-Object { $_ -like $grpcPattern }
134
+
135
+ if (-not $grpcMatch) {
136
+ $missing += "grpc/_cython/$grpcPattern"
137
+ } else {
138
+ Write-Host "✅ Found gRPC binary: $grpcMatch"
139
+ }
140
140
141
141
if ($missing.Count -gt 0) {
142
142
Write-Error "Validation failed. Missing expected files/folders:`n$($missing -join "`n")"
@@ -208,7 +208,7 @@ steps:
208
208
}
209
209
}
210
210
# === gRPC check ===
211
- $grpcPattern = "*$(majorVersion)$(minorVersion)* -${{ parameters.grpcBuild }}"
211
+ $grpcPattern = "*$(majorVersion)$(minorVersion)-${{ parameters.grpcBuild }}"
212
212
$grpcMatch = Get-ChildItem -Path $cythonDir -Name -ErrorAction SilentlyContinue |
213
213
Where-Object { $_ -like $grpcPattern }
214
214
Original file line number Diff line number Diff line change @@ -189,6 +189,7 @@ steps:
189
189
"proxy_worker/protos/shared/NullableTypes_pb2.py",
190
190
"proxy_worker/protos/shared/NullableTypes_pb2_grpc.py",
191
191
"six.py",
192
+ "uvloop",
192
193
"werkzeug",
193
194
"worker.py"
194
195
)
You can’t perform that action at this time.
0 commit comments