File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Fleetbench CI
2+
3+ on :
4+ push :
5+ branches : [main]
6+ pull_request :
7+ branches : [main]
8+
9+ jobs :
10+ build :
11+ strategy :
12+ fail-fast : false
13+ matrix :
14+ os : [ubuntu-latest]
15+ config : [fastbuild, opt]
16+ compiler :
17+ - name : gcc
18+ flags : " "
19+ - name : clang
20+ flags : " --config=clang"
21+
22+ runs-on : ${{ matrix.os }}
23+ name : " Build/Test ${{ matrix.os }} ${{ matrix.compiler.name }} ${{ matrix.config }}"
24+ steps :
25+ - name : Setup Python
26+ uses : actions/setup-python@v5
27+ with :
28+ python-version : " 3.12"
29+ - uses : actions/checkout@v4
30+ with :
31+ fetch-depth : 0
32+
33+ - name : Build
34+ run : |
35+ bazel build -c ${{ matrix.config }} ${{ matrix.compiler.flags }} --keep_going //...
36+ - name : Test
37+ run : |
38+ bazel test -c ${{ matrix.config }} ${{ matrix.compiler.flags }} --test_output=errors //...
39+
You can’t perform that action at this time.
0 commit comments