Skip to content

Workflow Updates for GitHub CI #2

Workflow Updates for GitHub CI

Workflow Updates for GitHub CI #2

Workflow file for this run

name: CI just for the Cuda component. Must select a GitHub label for this to run.
on:
pull_request:
types: [ labeled ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
papi_cuda_component:
strategy:
matrix:
components: [cuda]
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}}