File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,22 @@ concurrency:
15
15
16
16
17
17
jobs :
18
- envoy :
18
+ build_and_test :
19
19
runs-on : ubuntu-24.04
20
20
steps :
21
21
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
22
- - run : |
22
+ - name : Download build dependencies
23
+ shell : bash
24
+ run : |
25
+ mkdir -p build_deps/clang-14
26
+ cd build_deps/clang-14
27
+ wget https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.0/clang+llvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz
28
+ tar -xf clang+llvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz --strip-components 1
29
+ cd bin
30
+ echo "$(pwd)" >> $GITHUB_PATH
31
+ - name : Build :all_libs
32
+ run : |
23
33
bazel build --config=ci //:all_libs
34
+ - name : Run tests
35
+ run : |
36
+ bazel test --config=ci ...
You can’t perform that action at this time.
0 commit comments