Skip to content
This repository has been archived by the owner on Jul 26, 2023. It is now read-only.

Commit

Permalink
Force non-shallow clones
Browse files Browse the repository at this point in the history
Fixes issue 176
  • Loading branch information
AArnott committed Sep 13, 2022
1 parent e16106d commit 5d14d2c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions azure-pipelines/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
pool: ${{ parameters.windowsPool }}
steps:
- checkout: self
fetchDepth: 0 # avoid shallow clone so nbgv can do its work.
clean: true
- template: install-dependencies.yml

Expand All @@ -29,6 +30,7 @@ jobs:
vmImage: Ubuntu 20.04
steps:
- checkout: self
fetchDepth: 0 # avoid shallow clone so nbgv can do its work.
clean: true
- template: install-dependencies.yml
- template: dotnet.yml
Expand All @@ -42,6 +44,7 @@ jobs:
vmImage: macOS-10.15
steps:
- checkout: self
fetchDepth: 0 # avoid shallow clone so nbgv can do its work.
clean: true
- template: install-dependencies.yml
- template: dotnet.yml
Expand All @@ -58,6 +61,7 @@ jobs:
condition: succeededOrFailed()
steps:
- checkout: self
fetchDepth: 0 # avoid shallow clone so nbgv can do its work.
clean: true
- template: install-dependencies.yml
parameters:
Expand Down

0 comments on commit 5d14d2c

Please sign in to comment.