Skip to content

Commit

Permalink
updating build display names
Browse files Browse the repository at this point in the history
  • Loading branch information
soninaren committed Nov 6, 2020
1 parent cf18536 commit d0edd98
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ variables:

steps:
- task: UseDotNet@2
displayName: 'Install dotnet v3.x'
inputs:
packageType: 'sdk'
version: '3.1.x'
Expand All @@ -25,9 +26,9 @@ steps:
FILES_ACCOUNT_KEY: $(FILES_ACCOUNT_KEY)
FILES_ACCOUNT_NAME: $(FILES_ACCOUNT_NAME)
BUILD_VERSION: 1.1.$(devops_buildNumber)
displayName: 'Running a build Script'
displayName: 'Build'
- task: PowerShell@2
displayName: 'Set default dotnet path'
displayName: 'Set dotnet path'
inputs:
targetType: 'inline'
script: |
Expand All @@ -42,11 +43,13 @@ steps:
Write-Host "dotnet path: $dotnetPath"
Write-Host "##vso[task.setvariable variable=DotNetPath]$dotnetPath"
- task: UseDotNet@2
displayName: 'Install dotnet v2.x'
inputs:
packageType: 'sdk'
version: '2.2.207'
installationPath: $(DotNetPath)
- task: DotNetCoreCLI@2
displayName: 'Run End to End tests'
inputs:
command: 'test'
projects: '.\FunctionsSdkE2ETests\FunctionsSdkE2ETests.sln'
Expand Down

0 comments on commit d0edd98

Please sign in to comment.