Skip to content

Commit c8dc88a

Browse files
committed
review feedback
1 parent a729794 commit c8dc88a

File tree

6 files changed

+8
-11
lines changed

6 files changed

+8
-11
lines changed

eng/pipelines/common/download-specific-artifact-step.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ steps:
1111
displayName: 'Download specific ${{ parameters.displayName }}'
1212
inputs:
1313
buildType: specific
14-
project: 'internal'
14+
project: 'internal' # 'internal' or 'public'
1515
pipeline: 'superpmi-replay'
1616
buildVersionToDownload: specific
17-
branchName: 'kpathak/spmi-replay'
17+
branchName: 'your/branch/having/artifacts'
1818
buildId: '1274841'
1919
downloadType: single
2020
downloadPath: '$(Build.SourcesDirectory)/__download__'

eng/pipelines/coreclr/superpmi-replay.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- windows_x64
2323
- windows_x86
2424
jobParameters:
25-
uploadAsArtifacts: true
25+
uploadAs: 'pipelineArtifacts'
2626

2727
- template: /eng/pipelines/common/platform-matrix.yml
2828
parameters:

eng/pipelines/coreclr/templates/build-jit-job.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ parameters:
1111
timeoutInMinutes: ''
1212
variables: {}
1313
dependOnEvaluatePaths: false
14-
uploadAsArtifacts: false
14+
uploadAs: 'azureBlob'
1515

1616
### Product build
1717
jobs:
@@ -50,8 +50,8 @@ jobs:
5050

5151
- name: publishLogsArtifactPrefix
5252
value: 'BuildLogs_CoreCLR_JIT'
53-
- name: uploadAsArtifacts
54-
value: ${{ parameters.uploadAsArtifacts }}
53+
- name: uploadAs
54+
value: ${{ parameters.uploadAs }}
5555

5656
- name: compilerArg
5757
value: ''
@@ -109,7 +109,7 @@ jobs:
109109
- script: set __TestIntermediateDir=int&&$(Build.SourcesDirectory)/src/coreclr/build-runtime$(scriptExt) $(buildConfig) $(archType) -ci -nopgooptimize -skiprestoreoptdata -component alljits
110110
displayName: Build CoreCLR JIT
111111

112-
- ${{ if eq(parameters.uploadAsArtifacts, false) }}:
112+
- ${{ if eq(parameters.uploadAs, 'azureBlob') }}:
113113
# Ensure the Python azure-storage-blob package is installed before doing the upload.
114114
- script: $(PipScript) install --user --upgrade pip && $(PipScript) install --user azure.storage.blob==12.5.0 --force-reinstall
115115
displayName: Upgrade Pip to latest and install azure-storage-blob Python package
@@ -119,7 +119,7 @@ jobs:
119119
env:
120120
CLRJIT_AZ_KEY: $(clrjit_key1) # secret key stored as variable in pipeline
121121

122-
- ${{ if eq(parameters.uploadAsArtifacts, true) }}:
122+
- ${{ if eq(parameters.uploadAs, 'pipelineArtifacts') }}:
123123
# Publish product output directory for consumption by tests.
124124
- template: /eng/pipelines/common/upload-artifact-step.yml
125125
parameters:

eng/pipelines/coreclr/templates/run-superpmi-job.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ parameters:
1818
liveLibrariesBuildConfig: '' # optional -- live-live libraries configuration to use for the run
1919
runtimeType: 'coreclr' # optional -- Sets the runtime as coreclr or mono
2020
codeGenType: 'JIT' # optional -- Decides on the codegen technology if running on mono
21-
projectFile: 'superpmi.proj' # optional -- project file to build helix workitems
2221
runKind: '' # required -- test category
2322
collectionType: ''
2423
collectionName: ''

eng/pipelines/coreclr/templates/run-superpmi-replay-job.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ parameters:
1818
liveLibrariesBuildConfig: '' # optional -- live-live libraries configuration to use for the run
1919
runtimeType: 'coreclr' # optional -- Sets the runtime as coreclr or mono
2020
codeGenType: 'JIT' # optional -- Decides on the codegen technology if running on mono
21-
projectFile: 'superpmi.proj' # optional -- project file to build helix workitems
2221
runKind: '' # required -- test category
2322
collectionType: ''
2423
collectionName: ''

eng/pipelines/coreclr/templates/superpmi-job.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ jobs:
3939
liveLibrariesBuildConfig: ${{ parameters.liveLibrariesBuildConfig }}
4040
runtimeType: ${{ parameters.runtimeType }}
4141
codeGenType: ${{ parameters.codeGenType }}
42-
projectFile: ${{ parameters.projectFile }}
4342
runKind: ${{ parameters.runKind }}
4443
testGroup: ${{ parameters.testGroup }}
4544
collectionType: ${{ parameters.collectionType }}

0 commit comments

Comments
 (0)