Skip to content

Commit

Permalink
Allow for the manual setting of if the build is official when uploadi…
Browse files Browse the repository at this point in the history
…ng intermediate artifacts. (#100528)
  • Loading branch information
LoopedBard3 authored Apr 2, 2024
1 parent a8daf55 commit 254012e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion eng/pipelines/common/upload-intermediate-artifacts-step.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ parameters:
name: ''
publishPackagesCondition: always()
publishVSSetupCondition: false
isOfficialBuild: true

steps:
- task: CopyFiles@2
Expand All @@ -27,7 +28,7 @@ steps:

- template: /eng/pipelines/common/templates/publish-build-artifacts.yml
parameters:
isOfficialBuild: true
isOfficialBuild: ${{ parameters.isOfficialBuild }}
displayName: Publish intermediate artifacts
inputs:
PathtoPublish: '$(Build.StagingDirectory)/IntermediateArtifacts'
Expand Down
3 changes: 2 additions & 1 deletion eng/pipelines/coreclr/perf-non-wasm-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ jobs:
runKind: micro
runJobTemplate: /eng/pipelines/coreclr/templates/run-performance-job.yml
logicalmachine: 'perfowl'

# run coreclr perfviper microbenchmarks perf job
- template: /eng/pipelines/common/platform-matrix.yml
parameters:
Expand Down Expand Up @@ -376,6 +376,7 @@ jobs:
- template: /eng/pipelines/common/upload-intermediate-artifacts-step.yml
parameters:
name: MonoRuntimePacks
isOfficialBuild: false

# build PerfBDN app
- template: /eng/pipelines/common/platform-matrix.yml
Expand Down

0 comments on commit 254012e

Please sign in to comment.