Skip to content

Commit fe3e485

Browse files
committed
fixes
1 parent 2a9757f commit fe3e485

File tree

4 files changed

+13
-39
lines changed

4 files changed

+13
-39
lines changed

eng/ci/official-build.yml

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -80,34 +80,6 @@ extends:
8080
dependsOn: BuildPythonWorker
8181
jobs:
8282
- 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
11183

11284
# Python V2 Library Build and Test Stages
11385
- stage: BuildV2Library

eng/pack/templates/macos_64_env_gen.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ steps:
189189
"proxy_worker/protos/shared/NullableTypes_pb2.py",
190190
"proxy_worker/protos/shared/NullableTypes_pb2_grpc.py",
191191
"six.py",
192+
"uvloop",
192193
"werkzeug",
193194
"worker.py"
194195
)

eng/pack/templates/nix_arm64_env_gen.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -118,16 +118,6 @@ steps:
118118
} else {
119119
Write-Host "Skipping azurefunctions/ (minorVersion=7)"
120120
}
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-
}
131121
132122
$missing = @()
133123
@@ -137,6 +127,16 @@ steps:
137127
$missing += $item
138128
}
139129
}
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+
}
140140
141141
if ($missing.Count -gt 0) {
142142
Write-Error "Validation failed. Missing expected files/folders:`n$($missing -join "`n")"
@@ -208,7 +208,7 @@ steps:
208208
}
209209
}
210210
# === gRPC check ===
211-
$grpcPattern = "*$(majorVersion)$(minorVersion)*-${{ parameters.grpcBuild }}"
211+
$grpcPattern = "*$(majorVersion)$(minorVersion)-${{ parameters.grpcBuild }}"
212212
$grpcMatch = Get-ChildItem -Path $cythonDir -Name -ErrorAction SilentlyContinue |
213213
Where-Object { $_ -like $grpcPattern }
214214

eng/pack/templates/nix_env_gen.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ steps:
189189
"proxy_worker/protos/shared/NullableTypes_pb2.py",
190190
"proxy_worker/protos/shared/NullableTypes_pb2_grpc.py",
191191
"six.py",
192+
"uvloop",
192193
"werkzeug",
193194
"worker.py"
194195
)

0 commit comments

Comments
 (0)