Imported Upstream version 1.41.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 # For now //examples/android/binder/ are excluded because it needs Android
31 # SDK/NDK to be installed to build
32 bazel build --define=use_strict_warning=true \
33         -- \
34         :all \
35         //src/core/... \
36         //src/compiler/... \
37         //test/... \
38         //examples/... \
39         -//examples/android/binder/...
40
41 # TODO(jtattersmusch): Adding a build here for --define=grpc_no_xds is not ideal
42 # and we should find a better place for this. Refer
43 # https://github.com/grpc/grpc/pull/24536#pullrequestreview-517466531 for more
44 # details.
45 # Test that builds with --define=grpc_no_xds=true work.
46 bazel build //test/cpp/end2end:end2end_test --define=grpc_no_xds=true
47 # Test that builds that need xDS do not build with --define=grpc_no_xds=true
48 EXIT_CODE=0
49 bazel build //test/cpp/end2end:xds_end2end_test --define=grpc_no_xds=true || EXIT_CODE=$?
50 if [ $EXIT_CODE -eq 0 ]
51 then
52         echo "Building xds_end2end_test succeeded even with --define=grpc_no_xds=true"
53         exit 1
54 fi