109 строки
3.6 KiB
YAML
109 строки
3.6 KiB
YAML
# Copyright (c) .NET Foundation and Contributors
|
|
# See LICENSE file in the project root for full license information.
|
|
|
|
trigger:
|
|
branches:
|
|
include:
|
|
- main
|
|
- develop
|
|
- release-*
|
|
paths:
|
|
exclude:
|
|
- .github_changelog_generator
|
|
- .gitignore
|
|
- CHANGELOG.md
|
|
- CODE_OF_CONDUCT.md
|
|
- LICENSE.md
|
|
- README.md
|
|
- NuGet.Config
|
|
- assets/*
|
|
- config/*
|
|
- .github/*
|
|
|
|
# PR always trigger build
|
|
pr:
|
|
autoCancel: true
|
|
|
|
# add nf-tools repo to resources (for Azure Pipelines templates)
|
|
resources:
|
|
repositories:
|
|
- repository: templates
|
|
type: github
|
|
name: nanoframework/nf-tools
|
|
endpoint: nanoframework
|
|
|
|
pool:
|
|
vmImage: 'windows-latest'
|
|
|
|
variables:
|
|
- group: sign-client-credentials
|
|
- name: DOTNET_NOLOGO
|
|
value: true
|
|
- name: buildPlatform
|
|
value: 'Any CPU'
|
|
- name: buildConfiguration
|
|
value: 'Release'
|
|
- name: solution
|
|
value: 'nanoFramework.Logging.sln'
|
|
- name: nugetPackageName
|
|
value: 'nanoFramework.Logging'
|
|
|
|
steps:
|
|
|
|
# step from template @ nf-tools repo
|
|
# build steps only
|
|
- template: azure-pipelines-templates/class-lib-build-only.yml@templates
|
|
parameters:
|
|
sonarCloudProject: 'nanoframework_nanoFramework.Logging'
|
|
runUnitTests: true
|
|
unitTestRunsettings: '$(System.DefaultWorkingDirectory)\.runsettings'
|
|
|
|
# package steps
|
|
- template: azure-pipelines-templates/class-lib-package.yml@templates
|
|
parameters:
|
|
nugetPackageName: 'nanoFramework.Logging'
|
|
|
|
- template: azure-pipelines-templates/class-lib-package.yml@templates
|
|
parameters:
|
|
nugetPackageName: 'nanoFramework.Logging.Serial'
|
|
|
|
- template: azure-pipelines-templates/class-lib-package.yml@templates
|
|
parameters:
|
|
nugetPackageName: 'nanoFramework.Logging.Stream'
|
|
|
|
- template: azure-pipelines-templates/class-lib-package.yml@templates
|
|
parameters:
|
|
nugetPackageName: 'nanoFramework.Logging.Syslog'
|
|
|
|
- template: azure-pipelines-templates/class-lib-publish.yml@templates
|
|
|
|
# create or update GitHub release
|
|
- task: GithubRelease@1
|
|
condition: >-
|
|
and(
|
|
succeeded(),
|
|
startsWith(variables['Build.SourceBranch'], 'refs/heads/main'),
|
|
not(contains(variables['Build.SourceBranch'], 'preview')),
|
|
ne(variables['StartReleaseCandidate'], true)
|
|
)
|
|
displayName: Create/Update GitHub stable release
|
|
inputs:
|
|
gitHubConnection: 'github.com_nano-$(System.TeamProject)'
|
|
tagSource: userSpecifiedTag
|
|
tag: v$(MY_NUGET_VERSION)
|
|
title: '$(nugetPackageName) Library v$(MY_NUGET_VERSION)'
|
|
releaseNotesSource: inline
|
|
releaseNotesInline: 'Check the [changelog]($(Build.Repository.Uri)/blob/$(Build.SourceBranchName)/CHANGELOG.md).<br><br><h4>Install from NuGet</h4><br>The following NuGet packages are available for download from this release:<br>:package: [.NET](https://www.nuget.org/packages/$(nugetPackageName)/$(MY_NUGET_VERSION)) v$(MY_NUGET_VERSION).<br>:package: [.NET (Serial API only)](https://www.nuget.org/packages/nanoFramework.Logging.Serial/$(MY_NUGET_VERSION)) v$(MY_NUGET_VERSION)<br>:package: [.NET (Stream API only)](https://www.nuget.org/packages/nanoFramework.Logging.Stream/$(MY_NUGET_VERSION)) v$(MY_NUGET_VERSION)<br>:package: [.NET (Syslog API only)](https://www.nuget.org/packages/nanoFramework.Logging.Syslog/$(MY_NUGET_VERSION)) v$(MY_NUGET_VERSION)'
|
|
assets: '$(Build.ArtifactStagingDirectory)/$(nugetPackageName).$(MY_NUGET_VERSION).nupkg'
|
|
assetUploadMode: replace
|
|
isPreRelease: false
|
|
addChangeLog: false
|
|
|
|
# step from template @ nf-tools repo
|
|
# report error
|
|
- template: azure-pipelines-templates/discord-webhook-task.yml@templates
|
|
parameters:
|
|
status: 'failure'
|
|
webhookUrl: '$(DiscordWebhook)'
|
|
message: ''
|