From 34c71968307a9211d45c4aa4c662e0fbab113cf0 Mon Sep 17 00:00:00 2001 From: Victoria Hall Date: Wed, 26 Feb 2025 11:37:42 -0600 Subject: [PATCH] possibly need to change public build dependsOn --- eng/ci/public-build.yml | 2 -- eng/templates/jobs/build.yml | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/ci/public-build.yml b/eng/ci/public-build.yml index 30ff0511..1435a373 100644 --- a/eng/ci/public-build.yml +++ b/eng/ci/public-build.yml @@ -52,8 +52,6 @@ extends: - stage: Build jobs: - template: /eng/templates/jobs/build.yml@self - # Skip the build stage for SDK and Extensions release branches. This stage will fail because pyproject.toml contains the updated (and unreleased) library version - condition: and(eq(variables.isSdkRelease, false), eq(variables.isExtensionsRelease, false), eq(variables['USETESTPYTHONSDK'], false), eq(variables['USETESTPYTHONEXTENSIONS'], false)) - stage: RunUnitTests dependsOn: Build jobs: diff --git a/eng/templates/jobs/build.yml b/eng/templates/jobs/build.yml index c5b989c7..2bacb12d 100644 --- a/eng/templates/jobs/build.yml +++ b/eng/templates/jobs/build.yml @@ -1,6 +1,8 @@ jobs: - job: "Build" displayName: 'Build python worker' + # Skip the build stage for SDK and Extensions release branches. This stage will fail because pyproject.toml contains the updated (and unreleased) library version + condition: and(eq(variables.isSdkRelease, false), eq(variables.isExtensionsRelease, false), eq(variables['USETESTPYTHONSDK'], false), eq(variables['USETESTPYTHONEXTENSIONS'], false)) pool: name: 1es-pool-azfunc-public