Skip to content
Merged
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
5 changes: 5 additions & 0 deletions eng/pipelines/common/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ steps:
- ${{ each pair in step }}:
${{ pair.key }}: ${{ pair.value }}

# Cache Gradle downloads to avoid transient network failures during Android binding builds
- template: /eng/pipelines/common/cache-gradle.yml@self
parameters:
checkoutDirectory: ${{ parameters.checkoutDirectory }}
Comment on lines +88 to +91

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The general idea of restoring the cache here would improve this pipeline, for sure.


- pwsh: ./build.ps1 --target=dotnet --configuration="${{ parameters.buildConfiguration }}" --verbosity=diagnostic --nugetsource="${{ parameters.nugetFolder }}"
displayName: 'Install .NET'
retryCountOnTaskFailure: 3
Expand Down
Loading