Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions .azuredevops/rocwmma.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
variables:
- group: common
- template: /.azuredevops/variables-global.yml@pipelines_repo

parameters:
- name: pipelinesRepoRef
type: string
default: refs/heads/develop
- name: triggerDownstreamJobs
type: boolean
default: true

resources:
repositories:
- repository: pipelines_repo
type: github
endpoint: ROCm
name: ROCm/ROCm
ref: ${{ parameters.pipelinesRepoRef }}

trigger:
batch: true
branches:
include:
- develop
- release-staging/rocm-rel-7.*
paths:
exclude:
- projects/rocwmma/.githooks
- projects/rocwmma/.github
- projects/rocwmma/.jenkins
- projects/rocwmma/docs
- 'projects/rocwmma/.*.y*ml'
- 'projects/rocwmma/*.md'

pr: none

stages:
- stage: rocwmma
jobs:
- template: ${{ variables.CI_COMPONENT_PATH }}/rocWMMA.yml@pipelines_repo
parameters:
sparseCheckoutDir: projects/rocwmma
triggerDownstreamJobs: ${{ parameters.triggerDownstreamJobs }}
- template: templates/report-summary-check-wrapper.yml
1 change: 1 addition & 0 deletions .github/scripts/azure_resolve_subtree_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ def main(argv=None) -> None:
"projects/hipsparselt": 309,
"projects/miopen": 320,
"shared/origami": 364,
"projects/rocwmma": 370,
}

args = parse_arguments(argv)
Expand Down