Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/pipelines/templates/stages/1es-redirect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ extends:
- 1ES.PT.Tag-refs/tags/canary
settings:
skipBuildTagsForGitHubPullRequests: true
networkIsolationPolicy: Permissive
networkIsolationPolicy: Permissive, CFSClean
${{ if ne(variables['Build.DefinitionName'], 'python - core') }}:
featureFlags:
autoBaseline: false
Expand Down
10 changes: 10 additions & 0 deletions eng/pipelines/templates/stages/python-analyze-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ parameters:
- name: ServiceDirectory
type: string
default: ''
- name: DevFeedName
type: string
default: 'public/azure-sdk-for-python'
- name: BuildTargetingString
type: string
default: 'azure-*'
Expand Down Expand Up @@ -29,6 +32,13 @@ stages:
displayName: 'Use Python 3.10'
inputs:
versionSpec: '3.10'

# Authenticate pip to the configured Azure DevOps feed before installs.
- template: /eng/pipelines/templates/steps/auth-dev-feed.yml
parameters:
DevFeedName: ${{ parameters.DevFeedName }}
EnableTwineAuth: false

- script: |
python -m pip install -r eng/ci_tools.txt
displayName: 'Prep Environment'
Expand Down
Loading