-
Notifications
You must be signed in to change notification settings - Fork 51
70 lines (67 loc) · 1.87 KB
/
main.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
papi_component:
strategy:
matrix:
component: [perf_event, lmsensors, io, net, powercap, appio, coretemp, stealtime]
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:
component: [cuda, nvml]
debug: [yes, no]
shlib: [with, without]
fail-fast: false
runs-on: gpu_nvidia
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Test
run: .github/workflows/ci.sh ${{matrix.component}} ${{matrix.debug}} ${{matrix.shlib}}
papi_component_amd:
strategy:
matrix:
component: [rocm, rocm_smi]
debug: [yes, no]
shlib: [with, without]
fail-fast: false
runs-on: gpu_amd
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Test
run: .github/workflows/ci.sh ${{matrix.component}} ${{matrix.debug}} ${{matrix.shlib}}
papi_spack:
runs-on: cpu
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Build/Test/Install via Spack
run: .github/workflows/spack.sh
papi_clang_analysis:
runs-on: cpu
steps:
- uses: actions/checkout@v4
- name: Run static analysis
run: .github/workflows/clang_analysis.sh clang-analysis-output
- name: Archive analysis results
uses: actions/upload-artifact@v4
if: always()
with:
name: clang-analysis-output
path: src/clang-analysis-output