mirror of
https://github.com/ROCm/ROCm.git
synced 2026-04-05 03:01:17 -04: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
18 lines
433 B
YAML
18 lines
433 B
YAML
parameters:
|
|
# name of the repo to checkout
|
|
# for most cases, leave as default 'self'
|
|
- name: checkoutRepo
|
|
type: string
|
|
default: 'self'
|
|
# submodule download behaviour
|
|
# change to 'recursive' for repos with submodules
|
|
- name: submoduleBehaviour
|
|
type: string
|
|
default: 'true'
|
|
|
|
steps:
|
|
- checkout: ${{ parameters.checkoutRepo }}
|
|
clean: true
|
|
submodules: ${{ parameters.submoduleBehaviour }}
|
|
retryCountOnTaskFailure: 3
|