Skip to content

Commit

Permalink
Added icons|
Browse files Browse the repository at this point in the history
  • Loading branch information
coenm committed Sep 2, 2024
1 parent 7f696ec commit 3b91383
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions .azuredevops/Pipelines/Templates/create-installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ steps:
- pwsh: |
nuget install NSIS -OutputDirectory ./packages
makensis.exe /DPRODUCT_VERSION=$Env:NBGV_SEMVER2 _setup/RepoM.nsi
displayName: Create installer
displayName: ⚙️ Create installer

- task: DeleteFiles@1
displayName: Remove binaries
Expand All @@ -27,7 +27,7 @@ steps:
_output/win
- task: PublishBuildArtifacts@1
displayName: Publish artifact
displayName: 📢 Publish artifact
inputs:
# PathtoPublish: "$(Build.ArtifactStagingDirectory)"
PathtoPublish: "_output"
Expand Down
24 changes: 12 additions & 12 deletions .azuredevops/Pipelines/Templates/dotnet-sdk-install.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
steps:

- powershell: .azuredevops/Variables/_pipelines.ps1
failOnStderr: true
displayName: ⚙ Set pipeline variables based on source
name: SetPipelineVariables
- powershell: .azuredevops/Variables/_pipelines.ps1
failOnStderr: true
displayName: Set pipeline variables based on source
name: SetPipelineVariables

- task: UseDotNet@2
displayName: "Use specified dotnet sdk version"
inputs:
version: $(DOTNETSDKVERSION)
includePreviewVersions: false
condition: and(succeeded(), ne(variables['DOTNETSDKVERSION'], ''))
- task: UseDotNet@2
displayName: ⚙️ Use specified dotnet sdk version
inputs:
version: $(DOTNETSDKVERSION)
includePreviewVersions: false
condition: and(succeeded(), ne(variables['DOTNETSDKVERSION'], ''))

- script: dotnet --info
displayName: Show dotnet SDK info
- script: dotnet --info
displayName: Show dotnet SDK info
6 changes: 3 additions & 3 deletions .azuredevops/Pipelines/Templates/publish-code-analysis.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
steps:

- task: SonarCloudAnalyze@2
displayName: Run Code Analysis
displayName: ⚙️ Run Code Analysis

- task: SonarCloudPublish@2
displayName: Publish Quality Gate Result
displayName: 📢 Publish Quality Gate Result

- pwsh: |
dotnet tool install --tool-path . dotnet-reportgenerator-globaltool
Expand All @@ -13,7 +13,7 @@ steps:
name: MergeCoverageReports

- task: PublishCodeCoverageResults@2
displayName: Publish code coverage to devops
displayName: 📢 Publish code coverage to devops
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: '$(Agent.TempDirectory)/Cobertura.xml'
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
steps:

- task: CopyFiles@2
displayName: Copy release dependencies
displayName: 🗃️ Copy release dependencies
inputs:
contents: 'dotnet-releaser.toml'
targetFolder: _output_release_dependencies

- task: PublishBuildArtifacts@1
displayName: Publish release dependencies
displayName: 📢 Publish release dependencies
inputs:
PathtoPublish: "_output_release_dependencies"
ArtifactName: release-dependencies
6 changes: 3 additions & 3 deletions .azuredevops/Pipelines/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,23 +99,23 @@ stages:
# name: mdsnippets

- task: DotNetCoreCLI@2
displayName: DotNet Restore
displayName: 🛠️ DotNet Restore
inputs:
command: restore
projects: '**/*.csproj'

- template: Templates/prepare-code-analysis.yaml

- task: DotNetCoreCLI@2
displayName: DotNet Build
displayName: 🛠️ DotNet Build
inputs:
command: build
projects: '**/*.sln'
arguments: '--configuration $(BuildConfiguration)'

# https://docs.microsoft.com/en-us/azure/devops/pipelines/ecosystems/dotnet-core?view=azure-devops&tabs=dotnetfive
- task: DotNetCoreCLI@2
displayName: Dotnet Test
displayName: 🧪 Dotnet Test
inputs:
command: test
projects: 'tests/**/*.csproj'
Expand Down
4 changes: 2 additions & 2 deletions .azuredevops/Pipelines/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ stages:
- checkout: none
- powershell: |
Write-Host "##vso[build.updatebuildnumber]$(resources.pipeline.CI.runName)"
displayName: ⚙ Set up pipeline
displayName: ⚙ Set up pipeline
- stage: ManualValidation
displayName: "Manual Validation"
Expand Down Expand Up @@ -55,7 +55,7 @@ stages:
} else {
Write-Host "##vso[task.setvariable variable=IsPrerelease]false"
}
displayName: ⚙ Set up pipeline
displayName: ⚙ Set up pipeline
- download: CI
artifact: installer
displayName: 🔻 Download installer artifact
Expand Down
10 changes: 5 additions & 5 deletions .azuredevops/Pipelines/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ stages:
- template: Templates/dotnet-sdk-install.yaml

- task: PowerShell@2
displayName: Export variables
displayName: 🤖 Export variables
inputs:
targetType: 'inline'
script: |
Expand Down Expand Up @@ -75,7 +75,7 @@ stages:
Write-Error "There are local changes in the git repository meaning not all markdown snippets are up to date."
exit 1
}
displayName: Verify markdown snippets are up to date
displayName: 📄 Verify markdown snippets are up to date
name: mdsnippets
failOnStderr: true
Expand All @@ -86,22 +86,22 @@ stages:
name: Nbgv
- task: DotNetCoreCLI@2
displayName: DotNet Restore
displayName: 🛠️ DotNet Restore
inputs:
command: restore
projects: '**/*.csproj'

- template: Templates/prepare-code-analysis.yaml

- task: DotNetCoreCLI@2
- task: 🛠️ DotNetCoreCLI@2
displayName: DotNet Build
inputs:
command: build
projects: '**/*.sln'
arguments: '--configuration $(BuildConfiguration)'

- task: DotNetCoreCLI@2
displayName: Dotnet Test
displayName: 🧪 Dotnet Test
inputs:
command: test
projects: 'tests/**/*.csproj'
Expand Down

0 comments on commit 3b91383

Please sign in to comment.