-
Notifications
You must be signed in to change notification settings - Fork 0
114 lines (109 loc) · 2.76 KB
/
tests.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
---
name: Run tests
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "30 8 * * *" # runs every day at 8:30 am
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-test:
strategy:
matrix:
compilation-mode:
- fastbuild
- opt
- dbg
bazel-version:
- 7.x
runner:
- ubuntu-20.04
- ubuntu-22.04
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Set up
uses: ./.github/actions/setup
with:
bazel-version: ${{ matrix.bazel-version }}
- name: Unit test
shell: bash
run: ./development/cli/run_unit_test.bash -c "${COMPILATION_MODE}"
env:
COMPILATION_MODE: ${{ matrix.compilation-mode }}
integration-test:
strategy:
matrix:
compilation-mode:
- fastbuild
- opt
- dbg
bazel-version:
- 7.x
runner:
- ubuntu-20.04
- ubuntu-22.04
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Set up
uses: ./.github/actions/setup
with:
bazel-version: ${{ matrix.bazel-version }}
- name: Integration test
shell: bash
run: ./development/cli/run_integration_test.bash -c "${COMPILATION_MODE}"
env:
COMPILATION_MODE: ${{ matrix.compilation-mode }}
style-check:
runs-on: ubuntu-latest
strategy:
matrix:
style-checker:
- buildifier.bash
- clang_format.bash
- clang_tidy_integration_test.bash
- clang_tidy_root.bash
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Set up
uses: ./.github/actions/setup
with:
bazel-version: 7.x
- name: Run formatters and linters
shell: bash
run: "./development/cli/style_check/${STYLE_CHECKER}"
env:
STYLE_CHECKER: ${{ matrix.style-checker }}
- name: Fail if some files are changed
shell: bash
run: |
if ! git diff --exit-code; then
echo "ERROR: Files are changed by formatters" >&2
exit 1
fi
all-tests-passable:
if: always()
needs:
- unit-test
- integration-test
- style-check
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}