forked from kokkos/kokkos
-
Notifications
You must be signed in to change notification settings - Fork 3
62 lines (49 loc) · 1.68 KB
/
continuous-integration-stager.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
name: staged-continuous-integration
on:
push:
branches:
- develop
pull_request:
paths-ignore:
- '**/*.md'
types: [ opened, reopened, synchronize ]
concurrency:
group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{github.event_name == 'pull_request'}}
permissions: read-all
jobs:
# pre-stage
clang-format-check:
uses: ./.github/workflows/clang-format-check.yml
codeql:
# need to set manual permissions since it requires security-events write
# but then we have to set everything else manually to read since the
# default is overwritten
permissions:
# required for all workflows
security-events: write
# only required for workflows in private repositories
actions: read
contents: read
uses: ./.github/workflows/codeql.yml
initial-check:
uses: ./.github/workflows/continuous-integration-snifftest.yml
# primary testing
windows-cuda:
needs: [initial-check, clang-format-check]
uses: ./.github/workflows/continuous-integration-windows.yml
standard-linux:
needs: [initial-check, clang-format-check]
uses: ./.github/workflows/continuous-integration-linux.yml
hpx-linux:
needs: [initial-check, clang-format-check]
uses: ./.github/workflows/continuous-integration-linux-hpx.yml
linux-32bit:
needs: [initial-check, clang-format-check]
uses: ./.github/workflows/continuous-integration-linux-32bit.yml
osx:
needs: [initial-check, clang-format-check]
uses: ./.github/workflows/continuous-integration-osx.yml
performance-test:
needs: [initial-check, clang-format-check]
uses: ./.github/workflows/performance-benchmark.yml