-
Notifications
You must be signed in to change notification settings - Fork 13
63 lines (51 loc) · 2.01 KB
/
Copy pathpipeline-ci.yml
File metadata and controls
63 lines (51 loc) · 2.01 KB
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
name: Proxy-CI
on:
push:
branches: [ main, release/**, feature/** ]
pull_request:
branches: [ main, release/**, feature/** ]
workflow_dispatch:
jobs:
run-bvt-lint:
uses: ./.github/workflows/bvt-lint.yml
name: Run BVT for lint
if: github.event_name != 'push' || github.repository == 'ngcpp/proxy'
run-bvt-gcc:
uses: ./.github/workflows/bvt-gcc.yml
name: Run BVT with GCC
if: github.event_name != 'push' || github.repository == 'ngcpp/proxy'
run-bvt-clang:
uses: ./.github/workflows/bvt-clang.yml
name: Run BVT with Clang
if: github.event_name != 'push' || github.repository == 'ngcpp/proxy'
run-bvt-msvc:
uses: ./.github/workflows/bvt-msvc.yml
name: Run BVT with MSVC
if: github.event_name != 'push' || github.repository == 'ngcpp/proxy'
run-bvt-appleclang:
uses: ./.github/workflows/bvt-appleclang.yml
name: Run BVT with AppleClang
if: github.event_name != 'push' || github.repository == 'ngcpp/proxy'
run-bvt-appleclang-arm64e:
uses: ./.github/workflows/bvt-appleclang-arm64e.yml
name: Run BVT with AppleClang (arm64e with PAC)
run-bvt-nvhpc:
uses: ./.github/workflows/bvt-nvhpc.yml
name: Run BVT with NVHPC
if: github.event_name != 'push' || github.repository == 'ngcpp/proxy'
run-bvt-oneapi:
uses: ./.github/workflows/bvt-oneapi.yml
name: Run BVT with Intel oneAPI
if: github.event_name != 'push' || github.repository == 'ngcpp/proxy'
run-bvt-compatibility:
uses: ./.github/workflows/bvt-compatibility.yml
name: Run BVT for compatibility
if: github.event_name != 'push' || github.repository == 'ngcpp/proxy'
run-bvt-codecoverage:
uses: ./.github/workflows/bvt-codecoverage.yml
name: Run BVT for code coverage
if: github.event_name != 'push' || github.repository == 'ngcpp/proxy'
report:
uses: ./.github/workflows/bvt-report.yml
name: Generate report
needs: [run-bvt-gcc, run-bvt-clang, run-bvt-msvc, run-bvt-appleclang, run-bvt-appleclang-arm64e, run-bvt-nvhpc, run-bvt-oneapi]