Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alter CI to run Rich Navigation, add new Rich Nav specific pipeline #22964

Merged
merged 5 commits into from
Oct 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<add key="dotnet6" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json" />
<add key="dotnet6-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6-transport/nuget/v3/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<!-- Used for the Rich Navigation indexing task -->
<add key="richnav" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/vs-buildservices/nuget/v3/index.json" />
</packageSources>
<disabledPackageSources />
</configuration>
35 changes: 35 additions & 0 deletions azure-pipelines-richnav.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
trigger:
branches:
include:
- main

stages:
- stage: build
displayName: Build
jobs:
- template: eng/common/templates/jobs/jobs.yml
parameters:
enableMicrobuild: true
enableRichCodeNavigation: true
richCodeNavigationEnvironment: production
helixRepo: dotnet/efcore
jobs:
- job: Windows
timeoutInMinutes: 90
enablePublishTestResults: true
pool:
name: NetCorePublic-Pool
queue: BuildPool.Server.Amd64.VS2017.Open
steps:
- task: NuGetCommand@2
displayName: 'Clear NuGet caches'
condition: succeeded()
inputs:
command: custom
arguments: 'locals all -clear'

- task: PowerShell@2
inputs:
filePath: $(Build.SourcesDirectory)\eng\common\build.ps1
arguments: -restore -build -ci
displayName: Build