-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Azure Pipelines to use Endjin.RecommendedPractices.
- Loading branch information
1 parent
2d6d94e
commit 6b6dc27
Showing
3 changed files
with
42 additions
and
14 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
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,15 @@ | ||
trigger: none | ||
pr: none | ||
|
||
resources: | ||
repositories: | ||
- repository: recommended_practices | ||
type: github | ||
name: endjin/Endjin.RecommendedPractices.AzureDevopsPipelines.GitHub | ||
endpoint: corvus-dotnet-github | ||
|
||
jobs: | ||
- template: templates/tag.for.release.yml@recommended_practices | ||
parameters: | ||
vmImage: 'windows-latest' | ||
service_connection_github: $(Endjin_Service_Connection_GitHub) |
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 |
---|---|---|
@@ -1,17 +1,24 @@ | ||
# Starter pipeline | ||
|
||
# Start with a minimal pipeline that you can customize to build and deploy your code. | ||
# Add steps that build, run tests, deploy, and more: | ||
# https://aka.ms/yaml | ||
|
||
trigger: | ||
- master | ||
branches: | ||
include: | ||
- master | ||
- feature/* | ||
tags: | ||
include: | ||
- '*' | ||
|
||
pool: | ||
vmImage: 'ubuntu-latest' | ||
resources: | ||
repositories: | ||
- repository: recommended_practices | ||
type: github | ||
name: endjin/Endjin.RecommendedPractices.AzureDevopsPipelines.GitHub | ||
endpoint: corvus-dotnet-github | ||
|
||
steps: | ||
- task: DotNetCoreCLI@2 | ||
inputs: | ||
command: 'build' | ||
projects: 'Solutions/Ais.Net.Receiver.sln' | ||
jobs: | ||
- template: templates/build.and.release.yml@recommended_practices | ||
parameters: | ||
vmImage: 'ubuntu-latest' | ||
service_connection_nuget_org: $(Endjin_Service_Connection_NuGet_Org) | ||
service_connection_github: $(Endjin_Service_Connection_GitHub) | ||
solution_to_build: $(Endjin_Solution_To_Build) | ||
netSdkVersion: '3.x' |