mirror of
https://github.com/ROCm/ROCm.git
synced 2026-01-09 22:58:17 -05:00
* Base set of Azure DevOps pipeline library source A base set of yaml files to orchestrate the build and testing of ROCm compiler and runtime components in an Azure DevOps project. * Use hipcc in llvm-project, also build OpenCL runtime. * Adding llvm-lit tests to llvm-project pipeline. Added comgr ctest as well. * rocm-cmake unit testing in pipeline * Pipeline changes corresponding to 6.1 release
26 lines
622 B
YAML
26 lines
622 B
YAML
# optional step if not using cmake --install
|
|
# prepare the next package to upload
|
|
parameters:
|
|
- name: sourceDir # REQUIRED PARAMETER
|
|
type: string
|
|
default: ''
|
|
- name: contentsString
|
|
type: string
|
|
default: '**'
|
|
- name: targetDir
|
|
type: string
|
|
default: '$(Build.BinariesDirectory)'
|
|
- name: clean
|
|
type: boolean
|
|
default: true
|
|
|
|
steps:
|
|
- task: CopyFiles@2
|
|
displayName: 'Prepare for packaging'
|
|
inputs:
|
|
CleanTargetFolder: ${{ parameters.clean }}
|
|
SourceFolder: '${{ parameters.sourceDir }}'
|
|
Contents: '${{ parameters.contentsString }}'
|
|
TargetFolder: '${{ parameters.targetDir }}'
|
|
retryCount: 3
|