Skip to content

Commit fa11180

Browse files
committed
Disable the collect issues task that requires sorting (CQ-1485)
Our new artifactory no longer support sorting. Also CQ-1449
1 parent 99cc4f5 commit fa11180

File tree

1 file changed

+19
-18
lines changed

1 file changed

+19
-18
lines changed

common-tasks.yml

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,25 @@ steps:
66
scriptPath: build_conquest_python.py
77
displayName: 'install conquest_python'
88

9-
# Upload artifactory build info
10-
- task: ArtifactoryCollectIssues@1
11-
inputs:
12-
artifactoryService: 'devops-ccdc-3rd-party'
13-
configSource: 'taskConfiguration'
14-
taskConfig: |
15-
version: 1
16-
issues:
17-
trackerName: JIRA
18-
regexp: '(.*?)\b\(?(Jira|JIRA|jira)?\s+([A-Za-z]{2,5}\d*-\d+)\)?'
19-
keyGroupIndex: 3
20-
summaryGroupIndex: 1
21-
trackerUrl: https://jira.ccdc.cam.ac.uk/issues
22-
aggregate: true
23-
aggregationStatus: RELEASED
24-
buildName: '$(Build.DefinitionName)'
25-
buildNumber: '$(Build.BuildNumber)-$(artifactory.platformName)'
26-
displayName: 'Collect issues'
9+
#### The new artifactory doesn't support sorting, so we can't do this task for now
10+
## Upload artifactory build info
11+
#- task: ArtifactoryCollectIssues@1
12+
# inputs:
13+
# artifactoryService: 'devops-ccdc-3rd-party'
14+
# configSource: 'taskConfiguration'
15+
# taskConfig: |
16+
# version: 1
17+
# issues:
18+
# trackerName: JIRA
19+
# regexp: '(.*?)\b\(?(Jira|JIRA|jira)?\s+([A-Za-z]{2,5}\d*-\d+)\)?'
20+
# keyGroupIndex: 3
21+
# summaryGroupIndex: 1
22+
# trackerUrl: https://jira.ccdc.cam.ac.uk/issues
23+
# aggregate: true
24+
# aggregationStatus: RELEASED
25+
# buildName: '$(Build.DefinitionName)'
26+
# buildNumber: '$(Build.BuildNumber)-$(artifactory.platformName)'
27+
# displayName: 'Collect issues'
2728

2829
- powershell: |
2930
$filename = Get-ChildItem -Path $(Build.ArtifactStagingDirectory) -Filter *.tar.gz | Select-Object -ExpandProperty Name

0 commit comments

Comments
 (0)