Skip to content

Commit

Permalink
Added 🟣 to step names (#45494)
Browse files Browse the repository at this point in the history
  • Loading branch information
MiYanni authored Dec 20, 2024
2 parents 4dfdb29 + 6152c5d commit 2cf6150
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions eng/dotnet-format/dotnet-format-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ jobs:
- template: /eng/common/templates/steps/enable-internal-runtimes.yml
- template: /eng/common/templates/steps/enable-internal-sources.yml
- script: .\restore.cmd ${{ parameters.runtimeSourceProperties }}
displayName: Restore dependencies
displayName: 🟣 Restore dependencies
- script: |
.\artifacts\sdk-build-env.bat
dotnet run --project .\src\BuiltInTools\dotnet-format\dotnet-format.csproj -c Release -- @eng\dotnet-format\validate.rsp
displayName: Run dotnet-format
displayName: 🟣 Run dotnet-format
- task: ${{ parameters.oneESCompat.publishTaskPrefix }}PublishBuildArtifacts@1
displayName: Publish Logs
displayName: 🟣 Publish Logs
inputs:
PathtoPublish: $(Build.ArtifactStagingDirectory)
ArtifactName: dotnet-format formatting Check
Expand All @@ -109,10 +109,10 @@ jobs:
- template: /eng/common/templates/steps/enable-internal-runtimes.yml
- template: /eng/common/templates/steps/enable-internal-sources.yml
- script: eng\dotnet-format\integration-test.cmd -repo '${{ testArgs._repo }}' -branchName '${{ testArgs._branchName }}' -sha '${{ testArgs._sha }}' -targetSolution '${{ testArgs._targetSolution }}' -useParentSdk ${{ testArgs._useParentSdk }} -testPath '$(Agent.TempDirectory)\temp' -stage 'prepare' -runtimeSourceProperties '${{ parameters.runtimeSourceProperties }}'
displayName: Prepare ${{ testArgs._repoName }} for formatting
displayName: 🟣 Prepare ${{ testArgs._repoName }} for formatting

- script: eng\dotnet-format\integration-test.cmd -repo '${{ testArgs._repo }}' -branchName '${{ testArgs._branchName }}' -sha '${{ testArgs._sha }}' -targetSolution '${{ testArgs._targetSolution }}' -useParentSdk ${{ testArgs._useParentSdk }} -testPath '$(Agent.TempDirectory)\temp' -stage 'format-workspace'
displayName: Run dotnet-format on ${{ testArgs._repoName }} ${{ testArgs._targetSolution }}
displayName: 🟣 Run dotnet-format on ${{ testArgs._repoName }} ${{ testArgs._targetSolution }}

- script: eng\dotnet-format\integration-test.cmd -repo '${{ testArgs._repo }}' -branchName '${{ testArgs._branchName }}' -sha '${{ testArgs._sha }}' -targetSolution '${{ testArgs._targetSolution }}' -useParentSdk ${{ testArgs._useParentSdk }} -testPath '$(Agent.TempDirectory)\temp' -stage 'format-folder'
displayName: Run dotnet-format on ${{ testArgs._repoName }} repo folder
displayName: 🟣 Run dotnet-format on ${{ testArgs._repoName }} repo folder
18 changes: 9 additions & 9 deletions eng/pipelines/templates/jobs/sdk-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
# Publishes the build-configuration.json to the artifacts which Arcade uses to allow all the jobs in the pipeline to retry automatically.
# See: https://github.com/dotnet/arcade/blob/main/Documentation/Projects/Build%20Analysis/BuildRetryOnboard.md
- task: ${{ parameters.oneESCompat.publishTaskPrefix }}PublishPipelineArtifact@1
displayName: Publish build-configuration.json
displayName: 🟣 Publish build-configuration.json
inputs:
targetPath: $(Build.SourcesDirectory)/eng/BuildConfiguration
artifactName: BuildConfiguration
Expand All @@ -88,7 +88,7 @@ jobs:
${{ parameters.runtimeSourceProperties }}
${{ parameters.officialBuildProperties }}
/p:DotNetSignType=$(_SignType) /p:TeamName=$(_TeamName)
displayName: Build
displayName: 🟣 Build
env:
BuildConfig: $(buildConfiguration)
TestFullMSBuild: ${{ parameters.testFullMSBuild }}
Expand All @@ -112,7 +112,7 @@ jobs:
${{ parameters.runtimeSourceProperties }} \
${{ parameters.officialBuildProperties }} \
/p:DotNetSignType=$(_SignType) /p:TeamName=$(_TeamName)
displayName: Build
displayName: 🟣 Build
env:
BuildConfig: $(buildConfiguration)
Expand All @@ -121,7 +121,7 @@ jobs:
- ${{ if eq(parameters.runAoTTests, true) }}:
# For the reason this is here, see: https://github.com/dotnet/sdk/issues/22655
- script: $(Build.SourcesDirectory)/artifacts/bin/redist/$(buildConfiguration)/dotnet/dotnet workload install wasm-tools --skip-manifest-update
displayName: Install wasm-tools Workload
displayName: 🟣 Install wasm-tools Workload
# For the /p:Projects syntax for PowerShell, see: https://github.com/dotnet/msbuild/issues/471#issuecomment-1146466335
- ${{ if eq(parameters.pool.os, 'windows') }}:
- powershell: eng/common/build.ps1
Expand All @@ -132,7 +132,7 @@ jobs:
${{ parameters.runtimeSourceProperties }}
/p:CustomHelixTargetQueue=${{ parameters.helixTargetQueue }}
/bl:$(Build.SourcesDirectory)/artifacts/log/$(buildConfiguration)/${{ parameters.categoryName }}Tests.binlog
displayName: Run ${{ parameters.categoryName }} Tests
displayName: 🟣 Run ${{ parameters.categoryName }} Tests
condition: succeeded()
env:
# Required by Arcade for running in Helix.
Expand All @@ -154,7 +154,7 @@ jobs:
${{ parameters.runtimeSourceProperties }}
/p:CustomHelixTargetQueue=${{ parameters.helixTargetQueue }}${{ parameters.helixTargetContainer }}
/bl:$(Build.SourcesDirectory)/artifacts/log/$(buildConfiguration)/${{ parameters.categoryName }}Tests.binlog
displayName: Run ${{ parameters.categoryName }} Tests
displayName: 🟣 Run ${{ parameters.categoryName }} Tests
condition: succeeded()
env:
# Required by Arcade for running in Helix.
Expand All @@ -166,7 +166,7 @@ jobs:
- ${{ if eq(parameters.publishXunitResults, true) }}:
# This is only necessary for non-Helix tests.
- task: PublishTestResults@2
displayName: Publish xUnit Test Results
displayName: 🟣 Publish xUnit Test Results
inputs:
testResultsFormat: xUnit
testResultsFiles: artifacts/TestResults/$(buildConfiguration)/*.xml
Expand All @@ -177,7 +177,7 @@ jobs:
condition: always()

- task: CopyFiles@2
displayName: Copy Logs
displayName: 🟣 Copy Logs
inputs:
SourceFolder: $(Build.SourcesDirectory)/artifacts
${{ if eq(parameters.runTests, false) }}:
Expand All @@ -196,7 +196,7 @@ jobs:
condition: always()

- task: ${{ parameters.oneESCompat.publishTaskPrefix }}PublishBuildArtifacts@1
displayName: Publish Logs
displayName: 🟣 Publish Logs
inputs:
PathtoPublish: $(Build.ArtifactStagingDirectory)
# This is the job name, but because of "legacy reasons", both Agent.JobName and System.JobName are not the actual job name.
Expand Down

0 comments on commit 2cf6150

Please sign in to comment.