diff --git a/.github/workflows/ci.sh b/.github/workflows/ci.sh index f45f79368..51e8d4581 100755 --- a/.github/workflows/ci.sh +++ b/.github/workflows/ci.sh @@ -1,9 +1,5 @@ #!/bin/bash -e -# Temporarily disable for testing -hostname -exit - COMPONENT=$1 DEBUG=$2 SHLIB=$3 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9f9b003b9..c599618dc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,13 +13,9 @@ jobs: papi_component_cpu: strategy: matrix: - component: [perf_event, powercap, lmsensors, io, net, appio, coretemp, stealtime] + component: [perf_event, lmsensors, io, net, appio, coretemp, stealtime] debug: [yes, no] shlib: [with, without] - device: [cpu] - include: - - component: powercap - device: cpu_intel fail-fast: false runs-on: cpu timeout-minutes: 60 @@ -27,6 +23,19 @@ jobs: - uses: actions/checkout@v4 - name: Test run: .github/workflows/ci.sh ${{matrix.component}} ${{matrix.debug}} ${{matrix.shlib}} + papi_component_cpu_intel: + strategy: + matrix: + component: [powercap] + debug: [yes, no] + shlib: [with, without] + fail-fast: false + runs-on: cpu_intel + timeout-minutes: 60 + steps: + - uses: actions/checkout@v4 + - name: Test + run: .github/workflows/ci.sh ${{matrix.component}} ${{matrix.debug}} ${{matrix.shlib}} papi_component_nvidia: strategy: matrix: