Skip to content

Workflow Updates for PAPI GitHub CI #10

Workflow Updates for PAPI GitHub CI

Workflow Updates for PAPI GitHub CI #10

Workflow file for this run

name: Component specific CI
on:
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.pull_request.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_per_component.sh ${{matrix.components}} ${{matrix.debug}} ${{matrix.shlib}}
papi_rocm_component:
if: contains(github.event.pull_request.labels.*.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_per_component.sh ${{matrix.components}} ${{matrix.debug}} ${{matrix.shlib}}