-
Notifications
You must be signed in to change notification settings - Fork 51
42 lines (37 loc) · 1.09 KB
/
per_component.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Component specific CI
on:
push:
types: [ labeled ]
pull_request:
types: [ labeled, opened, synchronize, reopened ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
papi_cuda_component:
if: contains(github.event.labels.*.name, 'Component: cuda')
strategy:
matrix:
components: [cuda]
debug: [yes, no]
shlib: [with, without]
fail-fast: false
runs-on: [self-hosted, gpu_nvidia]
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Test
run: .github/workflows/ci.sh ${{matrix.components}} ${{matrix.debug}} ${{matrix.shlib}}
papi_rocm_component:
if: ${{ github.event.label.name == 'Component: rocm' }}
strategy:
matrix:
components: [rocm]
debug: [yes, no]
shlib: [with, without]
fail-fast: false
runs-on: [self-hosted, gpu_amd]
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Test
run: .github/workflows/ci.sh ${{matrix.components}} ${{matrix.debug}} ${{matrix.shlib}}