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

fixing the issue of validation pipeline #2096

Merged
merged 2 commits into from
Aug 16, 2023
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 vsts/pipelines/copyAllBlobsToProd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 7.x'
inputs:
version: 7.x
version: 7.0.306

- task: ShellScript@2
displayName: 'Copy all blobs from a source storage account to the prod storage account'
Expand Down
2 changes: 1 addition & 1 deletion vsts/pipelines/copySdksFromProdToStorageAccount.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 7.x'
inputs:
version: 7.x
version: 7.0.306

- task: ShellScript@2
displayName: 'Copy SDKs from the prod storage account to a destination storage account'
Expand Down
4 changes: 2 additions & 2 deletions vsts/pipelines/publishSdkToProd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ stages:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 7.x'
inputs:
version: 7.x
version: 7.0.306

- task: ShellScript@2
displayName: '(Dry run) Publish SDKs from dev to prod storage account'
Expand Down Expand Up @@ -56,7 +56,7 @@ stages:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 7.x'
inputs:
version: 7.x
version: 7.0.306

- task: ShellScript@2
displayName: 'Publish SDKs from dev to prod storage account'
Expand Down
2 changes: 1 addition & 1 deletion vsts/pipelines/templates/_buildTemplate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ steps:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 7.x'
inputs:
version: 7.x
version: 7.0.306

- script: |
dotnet --version && dotnet msbuild -version && echo
Expand Down
2 changes: 1 addition & 1 deletion vsts/pipelines/templates/_buildTemplateDetector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ steps:
- task: UseDotNet@2
displayName: 'Use .NET Core SDK 7.x'
inputs:
version: 7.x
version: 7.0.306

- task: ShellScript@2
displayName: 'Build Detector.sln'
Expand Down
2 changes: 1 addition & 1 deletion vsts/pipelines/templates/_integrationJobTemplate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 7.x'
inputs:
version: 7.x
version: 7.0.306

- task: ShellScript@2
displayName: 'Test Dev storage account'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ steps:
- task: UseDotNet@2
displayName: 'Use .NET Core SDK 7.x'
inputs:
version: 7.x
version: 7.0.306

- task: ShellScript@2
displayName: 'Test Dev storage account'
Expand Down
2 changes: 1 addition & 1 deletion vsts/pipelines/templates/_platformBinariesTemplate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ steps:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 7.x'
inputs:
version: 7.x
version: 7.0.306

- task: ShellScript@2
displayName: 'Building platform binaries'
Expand Down
2 changes: 1 addition & 1 deletion vsts/pipelines/templates/_releaseStepTemplate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ steps:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 7.x'
inputs:
version: 7.x
version: 7.0.306

- task: ShellScript@2
displayName: 'Test runtime images for pme staging registry'
Expand Down
2 changes: 1 addition & 1 deletion vsts/pipelines/templates/_signBinary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ steps:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 7.x'
inputs:
version: 7.x
version: 7.0.306

- powershell: |
Write-Host "Setting up git_commit and build_number as env variable"
Expand Down
2 changes: 1 addition & 1 deletion vsts/pipelines/templates/_signBinaryDetector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ steps:
- task: UseDotNet@2
displayName: 'Use .NET Core SDK 7.x'
inputs:
version: 7.x
version: 7.0.306

- powershell: |
Write-Host "Setting up git_commit and build_number as env variable"
Expand Down