forked from xuachen/RichCodeNavIndexCodeSamples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines-dev.yml
37 lines (32 loc) · 1011 Bytes
/
azure-pipelines-dev.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
33
34
35
36
37
# Runs weekly or after every push to all branches to validate indexing against development environment
trigger:
branches:
include: ["master", "*"]
paths:
exclude: ["doc", "*.md"]
schedules:
- cron: "0 15 * * Wed" # Wed @ 8 or 9 AM Mountain Time (depending on DST)
displayName: Weekly Development Environment Validation Run
branches:
include:
- master
always: true
queue:
name: Hosted VS2017
timeoutInMinutes: 60
steps:
- task: NodeTool@0
displayName: 'Use Node 10.x'
inputs:
versionSpec: 10.x
- task: MS-RichCodeNav.Indexer.build-task.RichCodeNavIndexer@0
displayName: Rich Code Navigation Upload to Development
inputs:
serviceConnection: 'richCodeNav-Token-Dev'
languages: 'csharp,typescript,java,cpp'
githubServiceConnection: 'xuachen'
nugetFeed: 'https://devdiv.pkgs.visualstudio.com/Personal/_packaging/richnav/nuget/v3/index.json'
isPrivateFeed: true
nugetVersion: '0.1.1617-alpha'
environment: development
continueOnError: true