Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ML Sync - Resolve invalid base error #25254

Merged
merged 1 commit into from
Jul 15, 2022
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -52,22 +52,18 @@ jobs:
- pwsh: |
Get-ChildItem "$(Build.ArtifactStagingDirectory)" -R
displayName: Output Staging Directory
continueOnError: true

- pwsh: |
git clone --depth 1 ${{ parameters.SamplesRepo }} $(Agent.BuildDirectory)/ml
Write-Host "##vso[task.setvariable variable=mlrepo;]$(Agent.BuildDirectory)/ml"
displayName: Clone the ML Samples Repo
continueOnError: true

- pwsh: |
Get-ChildItem "$(mlrepo)" -R
displayName: Output Staging Directory
continueOnError: true

- task: PythonScript@0
displayName: 'Generate Samples Repo Changes'
continueOnError: true
env:
BLOB_CONNECTION_STRING: $(azure-sdk-docsupport-cs)
inputs:
Expand All @@ -80,12 +76,12 @@ jobs:
- pwsh: |
cat "$(mlrepo)/sdk/setup.sh"
displayName: Display Updated setup.sh
continueOnError: true

- template: /eng/common/pipelines/templates/steps/create-pull-request.yml
parameters:
RepoName: azureml-examples
PRBranchName: test-ml-sdk-version-${{ parameters.ServiceDirectory }}-$(Build.BuildId)
BaseBranchName: main
CommitMsg: "Update sdk/setup.sh to target fresh built azure-ai-ml wheel."
PRTitle: "SDK Samples Run generated from $(Build.BuildId)"
WorkingDirectory: $(mlrepo)
Expand Down