-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
49 lines (40 loc) · 883 Bytes
/
azure-pipelines.yml
File metadata and controls
49 lines (40 loc) · 883 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: $(Date:yyyyMMdd)$(Rev:.r)
trigger:
branches:
include:
- develop
- master
- release/*
pr:
branches:
include:
- develop
- master
- release/*
resources:
repositories:
- repository: templates
type: github
name: CluedIn-io/AzurePipelines.Templates
endpoint: 'CluedIn-io'
ref: refs/heads/refactor
pool:
vmImage: 'windows-latest'
variables:
- name: testFolderPath
value: '$(Build.SourcesDirectory)/test'
- name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE
value: true
- name: DOTNET_CLI_TELEMETRY_OPTOUT
value: true
- name: buildConfiguration
value: Release
steps:
- task: UseDotNet@2
displayName: Install .NET SDK 6.0
inputs:
version: 6.0.x
# Configure NuGet
- task: NuGetAuthenticate@1
displayName: 'Authenticate with nuget'
- template: crawler.build.yml@templates