forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add rich nav specific pipeline to enable Rich Navigation (dotnet#43374)
* Add new Rich Nav specific pipeline, temporarily enable RichNav in CI * Temporarily fix template issue in arcade to test build * Fix typo in build-job.yml * Add Rich Nav package feed * Thread 'enableRichCodeNavigation' parameter through, respond to PR feedback * Remove change from templates * Simplify templating and building after insight from Santiago * Respond to pull request feedback from Santiago * Specify environment manually, enable for allConfigurations * Flow environment parameter through to build script * HACK HACK HACK: replace normal CI with Rich Nav * Increase timeout to 4 hours * Empty commit to force another build * Push empty commit to re-trigger build * empty commit to force build * fix build pipeline - remove script that no longer exists * Add missing task * Try changing the platform that is building this * Update Rich Nav pipeline, revert changes to runtime pipeline
- Loading branch information
Showing
4 changed files
with
57 additions
and
2 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
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,41 @@ | ||
trigger: | ||
branches: | ||
include: | ||
- master | ||
- release/*.* | ||
|
||
variables: | ||
- template: /eng/pipelines/common/variables.yml | ||
|
||
jobs: | ||
# | ||
# Evaluate paths | ||
# | ||
- ${{ if eq(variables.dependOnEvaluatePaths, true) }}: | ||
- template: /eng/pipelines/common/evaluate-default-paths.yml | ||
|
||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/common/global-build-job.yml | ||
buildConfig: debug | ||
platforms: | ||
- windows_x64 | ||
jobParameters: | ||
enableRichCodeNavigation: true | ||
richCodeNavigationEnvironment: "production" | ||
richCodeNavigationLanguage: "csharp" | ||
timeoutInMinutes: 240 | ||
buildArgs: -s libs.ref+libs.src -c debug -allConfigurations | ||
|
||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/common/global-build-job.yml | ||
buildConfig: debug | ||
platforms: | ||
- windows_x64 | ||
jobParameters: | ||
enableRichCodeNavigation: true | ||
nameSuffix: Mono | ||
richCodeNavigationEnvironment: "production" | ||
richCodeNavigationLanguage: "csharp,cpp" | ||
buildArgs: -s mono -c debug |
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