Skip to content

Commit 9eec1a5

Browse files
committed
enabling rocm-ci and kws for release branch
Signed-off-by: rahchoud <Rahul.Choudhary@amd.com>
1 parent 5c49ec9 commit 9eec1a5

2 files changed

Lines changed: 41 additions & 0 deletions

File tree

.github/workflows/kws_caller.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Rocm Validation Suite KWS
3+
on:
4+
pull_request:
5+
branches: [release/rocm-rel-6.4]
6+
types: [opened, synchronize, reopened]
7+
workflow_dispatch:
8+
jobs:
9+
kws:
10+
if: ${{ github.event_name == 'pull_request' }}
11+
uses: AMD-ROCm-Internal/rocm_ci_infra/.github/workflows/kws.yml@mainline
12+
secrets: inherit
13+
with:
14+
pr_number: ${{github.event.pull_request.number}}
15+
base_branch: ${{github.base_ref}}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: ROCm CI Caller
3+
on:
4+
pull_request:
5+
branches: [release/rocm-rel-6.4]
6+
types: [opened, reopened, synchronize]
7+
8+
workflow_dispatch:
9+
issue_comment:
10+
types: [created]
11+
12+
jobs:
13+
call-workflow:
14+
if: ${{ github.event_name != 'issue_comment' || github.event.comment.body == '!verify' }}
15+
uses: AMD-ROCm-Internal/rocm_ci_infra/.github/workflows/rocm_ci.yml@mainline
16+
secrets: inherit
17+
with:
18+
# yamllint disable rule:line-length
19+
input_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
20+
input_pr_num: ${{ github.event_name == 'pull_request' && github.event.pull_request.number || 0 }}
21+
input_pr_url: ${{ github.event_name == 'pull_request' && github.event.pull_request.html_url || '' }}
22+
input_pr_title: ${{ github.event_name == 'pull_request' && github.event.pull_request.title || '' }}
23+
repository_name: ${{ github.repository }}
24+
base_ref: ${{ github.event_name == 'pull_request' && github.base_ref || github.ref }}
25+
trigger_event_type: ${{ github.event_name }}
26+
# yamllint enable

0 commit comments

Comments
 (0)