Skip to content

Commit

Permalink
try reusable workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
e10harvey committed Aug 28, 2024
1 parent 691fc92 commit 52a08da
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 18 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/at2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: github-AT2

on:
pull_request:
paths-ignore:
- '**/*.rst'
- '**/*.md'
- '**/requirements.txt'
- '**/*.py'
- 'docs/**'
types: [ opened, reopened, synchronize ]

permissions:
contents: none

# Cancels any in progress 'workflow' associated with this PR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
mi210:
uses: kokkos/kokkos-kernels/.github/workflows/mi210.yml@develop
21 changes: 3 additions & 18 deletions .github/workflows/mi210.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,7 @@
name: github-AT2
name: Reusable MI210 workflow

on:
pull_request:
paths-ignore:
- '**/*.rst'
- '**/*.md'
- '**/requirements.txt'
- '**/*.py'
- 'docs/**'
types: [ opened, reopened, synchronize ]

permissions:
contents: none

# Cancels any in progress 'workflow' associated with this PR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_call

jobs:
# PR_VEGA90A_ROCM561_HIP_SERIAL_LEFT_REL:
Expand Down

0 comments on commit 52a08da

Please sign in to comment.