-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (39 loc) · 1.47 KB
/
ci_main.yml
File metadata and controls
47 lines (39 loc) · 1.47 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
name: CI - Main
on:
push:
pull_request:
branches:
- develop
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
clang_format:
uses: ./.github/workflows/clang-format.yml
secrets: inherit
abi_compliance_check:
needs: clang_format
# if clang-format changes code a new build is triggered, skip executing this build
if: ${{ needs.clang_format.outputs.pushed == 'false' }}
uses: ./.github/workflows/abi_compliance_check.yml
build_and_test:
needs: clang_format
# if clang-format changes code a new build is triggered, skip executing this build
if: ${{ needs.clang_format.outputs.pushed == 'false' }}
uses: ./.github/workflows/build_and_test.yml
coverage:
needs: clang_format
# if clang-format changes code a new build is triggered, skip executing this build
if: ${{ needs.clang_format.outputs.pushed == 'false' }}
uses: ./.github/workflows/coverage.yml
build_and_test_installed:
needs: clang_format
# if clang-format changes code a new build is triggered, skip executing this build
if: ${{ needs.clang_format.outputs.pushed == 'false' }}
uses: ./.github/workflows/install_and_test.yml
static_analyzer:
needs: clang_format
# if clang-format changes code a new build is triggered, skip executing this build
if: ${{ needs.clang_format.outputs.pushed == 'false' }}
uses: ./.github/workflows/static_analyzer.yml