Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions eng/common/core-templates/job/publish-build-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ jobs:
- ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
- checkout: ${{ parameters.repositoryAlias }}
fetchDepth: 3
fetchTags: false
Comment thread
elinor-fung marked this conversation as resolved.
Outdated
clean: true

- task: DownloadBuildArtifacts@0
Expand Down
1 change: 1 addition & 0 deletions eng/pipelines/common/evaluate-paths-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
- checkout: self
clean: true
fetchDepth: 2
fetchTags: false

- ${{ if ne(parameters.paths[0], '') }}:
- ${{ each path in parameters.paths }}:
Expand Down
1 change: 1 addition & 0 deletions eng/pipelines/common/global-build-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ jobs:
- checkout: self
clean: true
fetchDepth: $(checkoutFetchDepth)
fetchTags: false

- ${{ if and(eq(parameters.isOfficialBuild, true), notin(parameters.osGroup, 'osx', 'maccatalyst', 'ios', 'iossimulator', 'tvos', 'tvossimulator')) }}:
- template: /eng/pipelines/common/restore-internal-tools.yml
Expand Down
1 change: 1 addition & 0 deletions eng/pipelines/common/templates/runtimes/xplat-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,6 @@ jobs:
- checkout: self
clean: true
fetchDepth: $(checkoutFetchDepth)
fetchTags: false

- ${{ parameters.steps }}
1 change: 1 addition & 0 deletions eng/pipelines/coreclr/templates/perf-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ jobs:
SourceFolder: $(Build.SourcesDirectory)/dotnet-runtime
- checkout: git://internal/dotnet-performance@${{ parameters.perfBranch }}
path: performance
fetchTags: false
# Extra steps that will be passed to the performance template and run before sending the job to helix (all of which is done in the template)
- script: |
$(Build.SourcesDirectory)/eng/common/msbuild.sh $(Build.SourcesDirectory)/eng/testing/performance/add_properties_to_pipeline.proj /t:SetVariables
Expand Down
1 change: 1 addition & 0 deletions eng/pipelines/libraries/fuzzing/deploy-to-onefuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ extends:
- checkout: self
clean: true
fetchDepth: 1
fetchTags: false
lfs: false

- powershell: |
Expand Down
1 change: 1 addition & 0 deletions eng/pipelines/libraries/run-test-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ jobs:
- checkout: self
clean: true
fetchDepth: $(checkoutFetchDepth)
fetchTags: false

- ${{ if ne(variables['System.TeamProject'], 'public') }}:
- ${{ if ne(parameters.osGroup, 'windows') }}:
Expand Down
2 changes: 2 additions & 0 deletions eng/pipelines/libraries/stress/http.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ extends:
- checkout: self
clean: true
fetchDepth: 5
fetchTags: false

- bash: |
$(dockerfilesFolder)/build-docker-sdk.sh -t $(sdkBaseImage) -c $(BUILD_CONFIGURATION) && \
Expand Down Expand Up @@ -120,6 +121,7 @@ extends:
- checkout: self
clean: true
fetchDepth: 5
fetchTags: false
lfs: false

- powershell: |
Expand Down
2 changes: 2 additions & 0 deletions eng/pipelines/libraries/stress/ssl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ extends:
- checkout: self
clean: true
fetchDepth: 5
fetchTags: false

- bash: |
$(dockerfilesFolder)/build-docker-sdk.sh -t $(sdkBaseImage) -c $(BUILD_CONFIGURATION)
Expand Down Expand Up @@ -72,6 +73,7 @@ extends:
- checkout: self
clean: true
fetchDepth: 5
fetchTags: false
lfs: false

- powershell: |
Expand Down