-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Azure pipeline conditional template
- Loading branch information
Showing
3 changed files
with
45 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Azure DevOps Pipeline for continuous integration to build, test and package the nuget | ||
# | ||
# The following variables are settable at queue time. | ||
# BuildConfiguration - Debug | Release | ||
# NUGET_PACKAGE_VERSION - (Optional) Override the Nuget version tag that normally gets inferred from RELEASENOTES.md file | ||
|
||
pool: | ||
vmImage: windows-2019 | ||
|
||
steps: | ||
- template: pipeline-template-build-test-sign.yml | ||
parameters: | ||
SignBuild: 'false' | ||
PublishRelease: 'false' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# VSTS pipeline to build, test, package, sign and release a new nuget package | ||
# | ||
# Requirements: define the following Azure DevOps connections | ||
# FSharpLu-nuget - Nuget feed service connection (for pushing new packages) | ||
# FSharpLu-Github - Github service connection (for pushing new releases) | ||
# | ||
# Variables overridden at queue time: | ||
# NUGET_PACKAGE_VERSION - (Optional) Override the Nuget version tag that normally gets inferred from releasenotes.md file | ||
|
||
pool: | ||
vmImage: windows-2019 | ||
|
||
variables: | ||
BuildConfiguration: 'release' | ||
|
||
steps: | ||
- template: pipeline-template-build-test-sign.yml | ||
parameters: | ||
SignBuild: true | ||
PublishRelease: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters