Skip to content

Commit

Permalink
Merge pull request #1354 from xamarin/revert-hardcoded-job-name
Browse files Browse the repository at this point in the history
Reinstate dynamic job name in build.v1.yml
  • Loading branch information
jfversluis authored Apr 3, 2022
2 parents ded3ffc + a0cfeb0 commit d71a008
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/build.v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ parameters:

jobs:
- ${{ if or(ne(parameters.linuxAgentPoolName, 'Azure Pipelines'), ne(parameters.linuxImage, '')) }}:
- job: linux
- job: ${{ parameters.name }}
displayName: '${{ parameters.displayName }} linux'
timeoutInMinutes: ${{ parameters.timeoutInMinutes }}
continueOnError: ${{ eq(parameters.continueOnError, 'true') }}
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:


- ${{ if ne(parameters.macosImage, '') }}:
- job: macos
- job: ${{ parameters.name }}
displayName: '${{ parameters.displayName }} macos'
timeoutInMinutes: ${{ parameters.timeoutInMinutes }}
continueOnError: ${{ eq(parameters.continueOnError, 'true') }}
Expand Down

0 comments on commit d71a008

Please sign in to comment.