Imported Upstream version 1.36.0
[platform/upstream/grpc.git] / tools / internal_ci / linux / grpc_bazel_build_in_docker.sh
1 #!/usr/bin/env bash
2 # Copyright 2017 gRPC authors.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16 # Test basic Bazel features
17 #
18 # NOTE: No empty lines should appear in this file before igncr is set!
19 set -ex -o igncr || set -ex
20
21 mkdir -p /var/local/git
22 git clone /var/local/jenkins/grpc /var/local/git/grpc
23 (cd /var/local/jenkins/grpc/ && git submodule foreach 'cd /var/local/git/grpc \
24 && git submodule update --init --reference /var/local/jenkins/grpc/${name} \
25 ${name}')
26 cd /var/local/git/grpc
27
28 # Build all basic targets using the strict warning option which leverages the
29 # clang compiler to check if sources can pass a set of warning options.
30 bazel build --define=use_strict_warning=true \
31         :all \
32         //src/core/... \
33         //src/compiler/... \
34         //test/... \
35         //examples/...
36
37 # TODO(jtattersmusch): Adding a build here for --define=grpc_no_xds is not ideal
38 # and we should find a better place for this. Refer
39 # https://github.com/grpc/grpc/pull/24536#pullrequestreview-517466531 for more
40 # details.
41 # Test that builds with --define=grpc_no_xds=true work.
42 bazel build //test/cpp/end2end:end2end_test --define=grpc_no_xds=true
43 # Test that builds that need xDS do not build with --define=grpc_no_xds=true
44 EXIT_CODE=0
45 bazel build //test/cpp/end2end:xds_end2end_test --define=grpc_no_xds=true || EXIT_CODE=$?
46 if [ $EXIT_CODE -eq 0 ]
47 then
48         echo "Building xds_end2end_test succeeded even with --define=grpc_no_xds=true"
49         exit 1
50 fi