Skip to content

Commit 02cfc2e

Browse files
committed
fixes
1 parent c29b190 commit 02cfc2e

5 files changed

Lines changed: 11 additions & 3 deletions

File tree

eng/ci/official-build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,5 @@ extends:
4848
dependsOn: Build
4949
jobs:
5050
- template: /eng/templates/jobs/ci-tests.yml@self
51+
parameters:
52+
artifactFeed: 'internal/PythonSDK_Internal_TestPackages'

eng/ci/public-build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,5 @@ extends:
4848
dependsOn: Build
4949
jobs:
5050
- template: /eng/templates/jobs/ci-tests.yml@self
51+
parameters:
52+
artifactFeed: 'public/PythonSDK_PublicPackages'

eng/templates/jobs/ci-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
parameters:
2+
- name: artifactFeed
3+
type: string
4+
15
jobs:
26
- job: "TestPython"
37
displayName: "Run Python SDK Unit Tests"
@@ -26,7 +30,7 @@ jobs:
2630
- task: PipAuthenticate@1
2731
displayName: 'Pip Authenticate'
2832
inputs:
29-
artifactFeeds: 'public/PythonSDK_PublicPackages'
33+
artifactFeeds: ${{ parameters.artifactFeed }}
3034
- bash: |
3135
PYTHON_MAJOR=$(echo $(PYTHON_VERSION) | cut -d. -f1)
3236
PYTHON_MINOR=$(echo $(PYTHON_VERSION) | cut -d. -f2)

eng/templates/official/jobs/build-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- task: PipAuthenticate@1
2525
displayName: 'Pip Authenticate'
2626
inputs:
27-
artifactFeeds: 'public/PythonSDK_PublicPackages'
27+
artifactFeeds: 'internal/PythonSDK_Internal_TestPackages'
2828
- bash: |
2929
python -m pip install -U pip
3030
python -m pip install build

eng/templates/official/jobs/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ jobs:
242242
- task: PipAuthenticate@1
243243
displayName: 'Pip Authenticate'
244244
inputs:
245-
artifactFeeds: 'public/PythonSDK_PublicPackages'
245+
artifactFeeds: internal/PythonSDK_Internal_TestPackages
246246
- pwsh: |
247247
$newLibraryVersion = "${{ parameters.libraryVersion }}"
248248
$pypiToken = "$(PypiToken)"

0 commit comments

Comments
 (0)