forked from corvus-dotnet/Corvus.Testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
32 lines (30 loc) · 910 Bytes
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
trigger:
branches:
include:
- master
- main
- feature/*
tags:
include:
- '*'
resources:
repositories:
- repository: recommended_practices
type: github
name: endjin/Endjin.RecommendedPractices.AzureDevopsPipelines.GitHub
endpoint: corvus-dotnet-github
jobs:
- template: templates/build.and.release.yml@recommended_practices
parameters:
vmImage: 'windows-latest'
service_connection_nuget_org: $(Endjin_Service_Connection_NuGet_Org)
service_connection_github: $(Endjin_Service_Connection_GitHub)
solution_to_build: $(Endjin_Solution_To_Build)
postCustomEnvironmentVariables:
- task: Npm@1
displayName: 'Install Latest Azure Functions V3 Runtime'
inputs:
command: custom
verbose: false
customCommand: 'install -g azure-functions-core-tools@3 --unsafe-perm true'
netSdkVersion: '3.x'