forked from yugabyte/yugabyte-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yb_build.sh
executable file
·1288 lines (1170 loc) · 39.4 KB
/
yb_build.sh
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env bash
#
# Copyright (c) YugaByte, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
# in compliance with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under the License
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
# or implied. See the License for the specific language governing permissions and limitations
# under the License.
#
set -euo pipefail
script_name=${0##*/}
script_name=${script_name%.*}
. "${BASH_SOURCE%/*}"/build-support/common-test-env.sh
ensure_option_has_arg() {
if [[ $# -lt 2 ]]; then
echo "Command line option $1 expects an argument" >&2
exit 1
fi
}
show_help() {
cat >&2 <<-EOT
yb_build.sh (or "ybd") is the main build tool for YugaByte Database.
Usage: ${0##*/} [<options>] [<build_type>] [<target_keywords>] [<yb_env_var_settings>]
Options:
-h, --help
Show help.
--verbose
Show debug output from CMake.
--force-run-cmake, --frcm
Ensure that we explicitly invoke CMake from this script. CMake may still run as a result of
changes made to CMakeLists.txt files if we just invoke make on the CMake-generated Makefile.
--force-no-run-cmake, --fnrcm
The opposite of --force-run-cmake. Makes sure we do not run CMake.
--cmake-only
Only run CMake, don't run any other build steps.
--clean
Remove the build directory before building.
--clean-thirdparty
Remove previously built third-party dependencies and rebuild them. Does not imply --clean.
--no-ccache
Do not use ccache. Useful when debugging build scripts or compiler/linker options.
--clang
Use the clang C/C++ compiler.
--skip-build, --sb
Skip all kinds of build (C++, Java)
--skip-java-build, --skip-java, --sjb, --sj
Do not package and install java source code.
--java-tests, run-java-tests
Run the java unit tests when build is enabled.
--static
Force a static build.
--target, --targets
Pass the given target or set of targets to make.
--cxx-test <cxx_test_program_name>
Build and run the given C++ test program. We run the test using ctest. Specific tests within the
test program can be chosen using --gtest_filter.
--java-test <java_test_name>
Build and run the given Java test. Test name format is e.g.
org.yb.loadtester.TestRF1Cluster[#testRF1toRF3].
--no-tcmalloc
Do not use tcmalloc.
--no-rebuild-thirdparty, --nbtp, --nb3p, --nrtp, --nr3p
Skip building third-party libraries, even if the thirdparty directory has changed in git.
--use-shared-thirdparty, --ustp, --stp, --us3p, --s3p
Try to find and use a shared third-party directory (in YugaByte's build environment these
third-party directories are under $NFS_PARENT_DIR_FOR_SHARED_THIRDPARTY)
--show-compiler-cmd-line, --sccl
Show compiler command line.
--{no,skip}-{test-existence-check,check-test-existence}
Don't check that all test binaries referenced by CMakeLists.txt files exist.
--gtest_filter
Use the given filter to select Google Test tests to run. Uses with --cxx-test.
--test-args
Extra arguments to pass to the test. Used with --cxx-test.
--rebuild-file <source_file_to_rebuild>
The .o file corresponding to the given source file will be deleted from the build directory
before the build.
--rebuild-file <target_name>
Combines --target and --rebuild-file. Currently only works if target name matches the object
file name to be deleted.
--generate-build-debug-scripts, --gen-build-debug-scripts, --gbds
Specify this to generate one-off shell scripts that could be used to re-run and understand
failed compilation commands.
--ctest
Runs ctest in the build directory after the build. This is mutually exclusive with --cxx-test.
This will also skip building Java code, unless --run-java-tests is specified.
--ctest-args
Specifies additional arguments to ctest. Implies --ctest.
--skip-cxx-build, --scb
Skip C++ build. This is useful when repeatedly debugging tests using this tool and not making
any changes to the code.
--num-repetitions, --num-reps, -n
Repeat a C++ test this number of times. This delegates to the repeat_unit_test.sh script.
--write-build-descriptor <build_descriptor_path>
Write a "build descriptor" file. A "build descriptor" is a YAML file that provides information
about the build root, compiler used, etc.
--force, -f, -y
Run a clean build without asking for confirmation even if a clean build was recently done.
-j <parallelism>, -j<parallelism>
Build using the given number of concurrent jobs (defaults to the number of CPUs).
--remote
Prefer a remote build on an auto-scaling cluster of build workers. The parallelism is picked
automatically based on the current number of build workers.
--thirdparty-dir <thirdparty_dir>
Use a third-party directory other than <source_tree_root>/thirdparty. This is useful when using
multiple build directories with different versions of YB code so we can avoid building
third-party code multiple times.
--mvn-opts <maven_options>
Specify additional Maven options for Java build/tests.
--java-only, --jo
Only build Java code
--ninja
Use the Ninja backend instead of Make for CMake. This provides faster build speed in case
most part of the code is already built.
--make
Use the Make backend (as opposed to Ninja).
--build-root
The build root directory, e.g. build/debug-gcc-dynamic-enterprise. This is used in scripting
and is checked against other parameters.
--python-tests
Run various Python tests (doctest, unit test) and exit.
--java-lint
Run a simple shell-based "linter" on our Java code that verifies that we are importing the right
methods for assertions and using the right test runners. We exit the script after this step.
--cotire
Enable precompiled headers using cotire.
--cmake-args
Additional CMake arguments
--host-for-tests
Use this host for running tests. Could also be set using the YB_HOST_FOR_RUNNING_TESTS env
variable.
--test-timeout-sec
Test timeout in seconds
--sanitizer-extra-options, --extra-sanitizer-options
Extra options to pass to ASAN/LSAN/UBSAN/TSAN. See https://goo.gl/VbTjHH for possible values.
--sanitizer-verbosity
Use the given verbosity value for clang sanitizers. The default is 0.
--test-parallelism, --tp N
When running tests repeatedly, run up to N instances of the test in parallel. Equivalent to the
--parallelism argument of repeat_unit_test.sh.
--remove-successful-test-logs
Remove logs after a successful test run.
--stop-at-failure, --stop-on-failure
Stop running further iterations after the first failure happens when running a unit test
repeatedly.
--stack-trace-error-status, --stes
When running tests, print stack traces when error statuses are generated. Only works in
non-release mode.
--stack-trace-error-status-re, --stesr
When running tests, print stack traces when error statuses matching the given regex are
generated. Only works in non-release mode.
--clean-postgres
Do a clean build of the PostgreSQL subtree.
--no-postgres, --skip-postgres, --np, --sp
Skip PostgreSQL build
--gen-compilation-db, --gcdb
Generate the "compilation database" file, compile_commands.json, that can be used by editors
to provide better code assistance.
--make-ninja-extra-args <extra_args>
Extra arguments for the build tool such as Unix Make or Ninja.
--run-java-test-methods-separately, --rjtms
Run each Java test (test method or a parameterized instantiation of a test method) separately
as its own top-level Maven invocation, writing output to a separate file.
--rebuild-postgres
Clean and rebuild PostgeSQL code
--sanitizers-enable-coredump
When running tests with LLVM sanitizers (ASAN/TSAN/etc.), enable core dump.
--extra-daemon-flags <extra_daemon_flags>
Extra flags to pass to mini-cluster daemons (master/tserver). Note that bash-style quoting won't
work here -- they are naively split on spaces.
--no-latest-symlink
Disable the creation/overwriting of the "latest" symlink in the build directory.
--static-analyzer
Enable Clang static analyzer
--
Pass all arguments after -- to repeat_unit_test.
Build types:
debug (default), fastdebug, release, profile_gen, profile_build, asan, tsan
Supported target keywords:
...-test - build and run a C++ test
[yb-]master - master executable
[yb-]tserver - tablet server executable
daemons - yb-master, yb-tserver, and the postgres server
packaged[-targets] - targets that are required for a release package
initdb - Initialize the initial system catalog snapshot for fast cluster startup
reinitdb - Reinitialize the initial system catalog snapshot for fast cluster startup
Setting YB environment variables on the command line (for environment variables starting with YB_):
YB_SOME_VARIABLE1=some_value1 YB_SOME_VARIABLE2=some_value2
The same also works for postgres_FLAGS_... variables.
EOT
}
set_cxx_test_name() {
expect_num_args 1 "$@"
if [[ $cxx_test_name == $1 ]]; then
# Duplicate test name specified, ignore.
return
fi
if [[ -n $cxx_test_name ]]; then
fatal "Only one C++ test name can be specified (found '$cxx_test_name' and '$1')."
fi
cxx_test_name=$1
running_any_tests=true
build_java=false
}
set_java_test_name() {
expect_num_args 1 "$@"
if [[ $java_test_name == $1 ]]; then
# Duplicate test name specified, ignore.
return
fi
if [[ -n $java_test_name ]]; then
fatal "Only one Java test name can be specified (found '$java_test_name' and '$1')."
fi
running_any_tests=true
java_test_name=$1
}
set_vars_for_cxx_test() {
make_targets+=( $cxx_test_name )
# This is necessary to avoid failures if we are just building one test.
test_existence_check=false
}
print_report_line() {
local format_suffix=$1
shift
printf '%-32s : '"$format_suffix\n" "$@"
}
report_time() {
expect_num_args 2 "$@"
local description=$1
local time_var_prefix=$2
local start_time_var_name="${time_var_prefix}_start_time_sec"
local end_time_var_name="${time_var_prefix}_end_time_sec"
local -i start_time=${!start_time_var_name:-0}
local -i end_time=${!end_time_var_name:-0}
if [[ $start_time -ne 0 && $end_time -ne 0 ]]; then
local caption="$description time"
print_report_line "%d seconds" "$caption" "$(( $end_time - $start_time ))"
fi
}
print_report() {
if "$show_report"; then
(
echo
thick_horizontal_line
echo "YUGABYTE BUILD SUMMARY"
thick_horizontal_line
print_report_line "%s" "Build type" "${build_type:-undefined}"
if [[ -n ${YB_COMPILER_TYPE:-} ]]; then
print_report_line "%s" "C/C++ compiler" "$YB_COMPILER_TYPE"
fi
print_report_line "%s" "Build directory" "${BUILD_ROOT:-undefined}"
print_report_line "%s" "Third-party dir" "${YB_THIRDPARTY_DIR:-undefined}"
if using_linuxbrew; then
print_report_line "%s" "Linuxbrew dir" "${YB_LINUXBREW_DIR:-undefined}"
fi
if using_custom_homebrew; then
print_report_line "%s" "Custom Homebrew dir" "${YB_CUSTOM_HOMEBREW_DIR:-undefined}"
fi
set +u
local make_targets_str="${make_targets[*]}"
set -u
if [[ -n $make_targets_str ]]; then
print_report_line "%s" "Targets" "$make_targets_str"
fi
report_time "CMake" "cmake"
report_time "C++ compilation" "make"
if "$run_java_tests"; then
report_time "Java compilation and tests" "java_build"
else
report_time "Java compilation" "java_build"
fi
report_time "C++ (one test program)" "cxx_test"
report_time "ctest (multiple C++ test programs)" "ctest"
report_time "Remote tests" "remote_tests"
if [[ ${YB_SKIP_BUILD:-} == "1" ]]; then
echo
echo "NO COMPILATION WAS DONE AS PART OF THIS BUILD (--skip-build)"
echo
fi
if [[ -n ${YB_BUILD_EXIT_CODE:-} && $YB_BUILD_EXIT_CODE -ne 0 ]]; then
print_report_line "%s" "Exit code" "$YB_BUILD_EXIT_CODE"
fi
horizontal_line
) >&2
fi
}
set_flags_to_skip_build() {
build_cxx=false
build_java=false
}
create_build_descriptor_file() {
if [[ -n $build_descriptor_path ]]; then
# The format of this file is YAML.
cat >"$build_descriptor_path" <<-EOT
build_type: "$build_type"
cmake_build_type: "$cmake_build_type"
build_root: "$BUILD_ROOT"
compiler_type: "$YB_COMPILER_TYPE"
thirdparty_dir: "${YB_THIRDPARTY_DIR:-$YB_SRC_ROOT/thirdparty}"
EOT
if using_linuxbrew; then
echo "linuxbrew_dir: \"${YB_LINUXBREW_DIR:-}\"" >>"$build_descriptor_path"
fi
if using_custom_homebrew; then
echo "custom_homebrew_dir: \"${YB_CUSTOM_HOMEBREW_DIR:-}\"" >>"$build_descriptor_path"
fi
log "Created a build descriptor file at '$build_descriptor_path'"
fi
}
capture_sec_timestamp() {
expect_num_args 1 "$@"
local current_timestamp=$(date +%s)
eval "${1}_time_sec=$current_timestamp"
}
run_cxx_build() {
if ( "$force_run_cmake" || "$cmake_only" || [[ ! -f $make_file ]] ) && \
! "$force_no_run_cmake"; then
if [[ -z ${NO_REBUILD_THIRDPARTY:-} ]]; then
build_compiler_if_necessary
fi
log "Using cmake binary: $( which cmake )"
log "Running cmake in $PWD"
capture_sec_timestamp "cmake_start"
(
# Always disable remote build (running the compiler on a remote worker node) when running the
# CMake step.
set -x
export YB_REMOTE_COMPILATION=0
cmake "${cmake_opts[@]}" $cmake_extra_args "$YB_SRC_ROOT"
)
capture_sec_timestamp "cmake_end"
fi
if "$cmake_only"; then
log "CMake has been invoked, stopping here (--cmake-only specified)."
exit
fi
if [[ ${#object_files_to_delete[@]} -gt 0 ]]; then
log_empty_line
log "Deleting object files corresponding to: ${object_files_to_delete[@]}"
# TODO: can delete multiple files using the same find command.
for object_file_to_delete in "${object_files_to_delete[@]}"; do
( set -x; find "$BUILD_ROOT" -name "$object_file_to_delete" -exec rm -fv {} \; )
done
log_empty_line
fi
fix_gtest_cxx_test_name
set_vars_for_cxx_test
log "Running $make_program in $PWD"
capture_sec_timestamp "make_start"
set +u +e # "set -u" may cause failures on empty lists
time (
set -x
"$make_program" "-j$YB_MAKE_PARALLELISM" "${make_opts[@]}" $make_ninja_extra_args \
"${make_targets[@]}"
)
local exit_code=$?
set -u -e
capture_sec_timestamp "make_end"
log "C++ build finished with exit code $exit_code" \
"(build type: $build_type, compiler: $YB_COMPILER_TYPE)." \
"Timing information is available above."
if [[ $exit_code -ne 0 ]]; then
exit "$exit_code"
fi
# Don't check for test binary existence in case targets are explicitly specified.
if "$test_existence_check" && [[ ${#make_targets[@]} -eq 0 ]]; then
(
cd "$BUILD_ROOT"
log "Checking if all test binaries referenced by CMakeLists.txt files exist."
if ! check_test_existence; then
log "Re-running test existence check again with more verbose output"
# We need to do this because sometimes we get an error with no useful output otherwise.
# We pass a pattern that includes all lines in the output.
check_test_existence '.*'
fatal "Some test binaries referenced in CMakeLists.txt files do not exist," \
"or failed to check. See detailed output above."
fi
)
fi
}
run_repeat_unit_test() {
export YB_COMPILER_TYPE
set +u
local repeat_unit_test_args=(
"${repeat_unit_test_inherited_args[@]}"
)
set -u
repeat_unit_test_args+=(
"$@"
--build-type "$build_type"
--num-iter "$num_test_repetitions"
)
if [[ -n ${test_parallelism:-} ]]; then
repeat_unit_test_args+=( --parallelism "$test_parallelism" )
fi
if "$verbose"; then
repeat_unit_test_args+=( --verbose )
fi
(
set -x
"$YB_SRC_ROOT"/bin/repeat_unit_test.sh "${repeat_unit_test_args[@]}"
)
}
run_ctest() {
# Not setting YB_CTEST_VERBOSE here because we don't want the output of a potentially large number
# of tests to go to stdout.
(
cd "$BUILD_ROOT"
set -x
ctest -j"$YB_NUM_CPUS" --verbose $ctest_args 2>&1 |
egrep -v "^[0-9]+: Test timeout computed to be: "
)
}
run_tests_remotely() {
ran_tests_remotely=false
if ! "$running_any_tests"; then
# Nothing to run remotely.
return
fi
if [[ -n ${YB_HOST_FOR_RUNNING_TESTS:-} && \
$YB_HOST_FOR_RUNNING_TESTS != "localhost" && \
$YB_HOST_FOR_RUNNING_TESTS != $HOSTNAME && \
$YB_HOST_FOR_RUNNING_TESTS != $HOSTNAME.* ]] ; then
capture_sec_timestamp "remote_tests_start"
log "Running tests on host '$YB_HOST_FOR_RUNNING_TESTS' (current host is '$HOSTNAME')"
# Add extra arguments to the sub-invocation of yb_build.sh. We have to add them before the
# first "--".
set +u
sub_yb_build_args=()
extra_args=( --skip-build --host-for-tests "localhost" --no-report )
for arg in "${original_args[@]}"; do
case $arg in
--)
sub_yb_build_args+=( "${extra_args[@]}" "$arg" )
extra_args=()
;;
--clean|--clean-thirdparty)
# Do not pass these arguments to the child yb_build.sh.
;;
*)
sub_yb_build_args+=( "$arg" )
esac
done
sub_yb_build_args+=( "${extra_args[@]}" )
set -u
log "Running tests on server '$YB_HOST_FOR_RUNNING_TESTS': yb_build.sh ${sub_yb_build_args[*]}"
run_remote_cmd "$YB_HOST_FOR_RUNNING_TESTS" "$YB_SRC_ROOT/yb_build.sh" \
"${sub_yb_build_args[@]}"
capture_sec_timestamp "remote_tests_end"
ran_tests_remotely=true
fi
}
run_cxx_test() {
fix_cxx_test_name
if [[ $num_test_repetitions -eq 1 ]]; then
(
set_sanitizer_runtime_options
cd "$BUILD_ROOT"
# The following makes our test framework repeat the test log in stdout in addition writing the
# log file instead of simply redirecting it to the log file. Combined with the --verbose ctest
# option, this gives us nice real-time test output, while still taking advantage of correct
# test flags such (e.g. ASAN/TSAN options and suppression rules) that are set in run-test.sh.
export YB_CTEST_VERBOSE=1
# --verbose: enable verbose output from tests. Test output is normally suppressed and only
# summary information is displayed. This option will show all test output.
# --output-on-failure is unnecessary when --verbose is specified. In fact, adding
# --output-on-failure will result in duplicate output in case of a failure.
#
# In this verbose mode, ctest also adds some number (test number?) with a colon in the
# beginning of every line of the output. We filter that out.
set -x
ctest --verbose -R ^"$cxx_test_name"$ 2>&1 | sed 's/^[0-9][0-9]*: //g'
)
else
run_repeat_unit_test "$build_type" "$test_binary_name"
fi
}
register_file_to_rebuild() {
expect_num_args 1 "$@"
local file_name=${1%.o}
object_files_to_delete+=(
"$file_name.o"
"$file_name.c.o"
"$file_name.cc.o"
)
}
# This is used for "initdb" and "reinitdb" target keywords.
set_initdb_target() {
make_targets+=( "initial_sys_catalog_snapshot" )
build_java=false
}
cleanup() {
local YB_BUILD_EXIT_CODE=$?
print_report
exit "$YB_BUILD_EXIT_CODE"
}
# -------------------------------------------------------------------------------------------------
# Command line parsing
# -------------------------------------------------------------------------------------------------
build_type=""
verbose=false
force_run_cmake=false
force_no_run_cmake=false
clean_before_build=false
clean_thirdparty=false
no_ccache=false
make_opts=()
force=false
build_cxx=true
build_java=true
run_java_tests=false
save_log=false
make_targets=()
no_tcmalloc=false
cxx_test_name=""
test_existence_check=true
object_files_to_delete=()
should_run_ctest=false
ctest_args=""
num_test_repetitions=1
build_descriptor_path=""
export YB_GTEST_FILTER=""
repeat_unit_test_inherited_args=()
forward_args_to_repeat_unit_test=false
original_args=( "$@" )
user_mvn_opts=""
java_only=false
cmake_only=false
use_shared_thirdparty=false
no_shared_thirdparty=false
run_python_tests=false
cmake_extra_args=""
predefined_build_root=""
java_test_name=""
show_report=true
running_any_tests=false
clean_postgres=false
export_compile_commands=false
make_ninja_extra_args=""
java_lint=false
export YB_HOST_FOR_RUNNING_TESTS=${YB_HOST_FOR_RUNNING_TESTS:-}
export YB_EXTRA_GTEST_FLAGS=""
unset BUILD_ROOT
export YB_RECREATE_INITIAL_SYS_CATALOG_SNAPSHOT=0
while [[ $# -gt 0 ]]; do
if is_valid_build_type "$1"; then
build_type="$1"
shift
continue
fi
if "$forward_args_to_repeat_unit_test"; then
repeat_unit_test_inherited_args+=( "$1" )
shift
continue
fi
case ${1//_/-} in
-h|--help)
show_help >&2
exit 1
;;
--verbose)
verbose=true
export YB_VERBOSE=1
;;
--force-run-cmake|--frcm)
force_run_cmake=true
;;
--force-no-run-cmake|--fnrcm)
force_no_run_cmake=true
;;
--cmake-only)
cmake_only=true
;;
--clean)
clean_before_build=true
;;
--clean-thirdparty)
clean_thirdparty=true
;;
-f|--force|-y)
force=true
;;
--no-ccache)
no_ccache=true
;;
--gcc)
YB_COMPILER_TYPE="gcc"
;;
--clang)
YB_COMPILER_TYPE="clang"
;;
--zapcc)
YB_COMPILER_TYPE="zapcc"
;;
--skip-java-build|--skip-java|--sjb|--sj)
build_java=false
;;
--run-java-tests|--java-tests)
run_java_tests=true
;;
--static)
YB_LINK=static
;;
--save-log)
save_log=true
;;
--target)
make_targets+=( "$2" )
shift
;;
--targets)
make_targets+=( $2 )
shift
;;
--no-tcmalloc)
no_tcmalloc=true
;;
--cxx-test|--ct)
set_cxx_test_name "$2"
shift
;;
--java-test|--jt)
set_java_test_name "$2"
shift
;;
--ctest)
should_run_ctest=true
running_any_tests=true
;;
--ctest-args)
should_run_ctest=true
ctest_args+=$2
shift
;;
--no-rebuild-thirdparty|--nrtp|--nr3p|--nbtp|--nb3p)
export NO_REBUILD_THIRDPARTY=1
;;
--use-shared-thirdparty|--ustp|--stp|--us3p|--s3p)
use_shared_thirdparty=true
;;
--no-shared-thirdparty|--nstp|ns3p)
no_shared_thirdparty=true
;;
--show-compiler-cmd-line|--sccl)
export YB_SHOW_COMPILER_COMMAND_LINE=1
;;
--skip-test-existence-check|--no-test-existence-check|--ntec) test_existence_check=false ;;
--skip-check-test-existence|--no-check-test-existence|--ncte) test_existence_check=false ;;
--gtest-filter)
ensure_option_has_arg "$@"
export YB_GTEST_FILTER=$2
shift
;;
# Support the way of argument passing that is used for gtest test programs themselves.
--gtest-filter=*)
export YB_GTEST_FILTER=${2#--gtest-filter=}
;;
--rebuild-file)
ensure_option_has_arg "$@"
register_file_to_rebuild "$2"
shift
;;
--test-args)
ensure_option_has_arg "$@"
export YB_EXTRA_GTEST_FLAGS+=" $2"
shift
;;
--rebuild-target)
ensure_option_has_arg "$@"
object_files_to_delete+=( "$2.o" "$2.cc.o" )
make_targets=( "$2" )
shift
;;
--generate-build-debug-scripts|--gen-build-debug-scripts|--gbds)
export YB_GENERATE_BUILD_DEBUG_SCRIPTS=1
;;
--skip-cxx-build|--scb)
build_cxx=false
;;
--java-only|--jo)
build_cxx=false
java_only=true
;;
--num-repetitions|--num-reps|-n)
ensure_option_has_arg "$@"
num_test_repetitions=$2
shift
if [[ ! $num_test_repetitions =~ ^[0-9]+$ ]]; then
fatal "Invalid number of test repetitions: $num_test_repetitions"
fi
;;
--write-build-descriptor)
ensure_option_has_arg "$@"
build_descriptor_path=$2
shift
;;
--thirdparty-dir)
ensure_option_has_arg "$@"
export YB_THIRDPARTY_DIR=$2
shift
validate_thirdparty_dir
;;
-j)
ensure_option_has_arg "$@"
export YB_MAKE_PARALLELISM=$2
shift
;;
-j[1-9])
export YB_MAKE_PARALLELISM=${1#-j}
;;
--remote)
export YB_REMOTE_COMPILATION=1
if [[ ! -f "$YB_BUILD_WORKERS_FILE" ]]; then
fatal "--remote specified but $YB_BUILD_WORKERS_FILE not found"
fi
;;
--no-remote)
export YB_REMOTE_COMPILATION=0
;;
--)
if [[ $num_test_repetitions -lt 2 ]]; then
fatal "Trying to forward arguments to repeat_unit_test.sh, but -n not specified, so" \
"we won't be repeating a test multiple times."
fi
forward_args_to_repeat_unit_test=true
;;
[a-z]*test)
log "'$1' looks like a C++ test name, assuming --cxx-test"
set_cxx_test_name "$1"
;;
master|yb-master)
make_targets+=( "yb-master" )
;;
tserver|yb-tserver)
make_targets+=( "yb-tserver" )
;;
initdb)
set_initdb_target
;;
reinitdb)
export YB_RECREATE_INITIAL_SYS_CATALOG_SNAPSHOT=1
set_initdb_target
;;
postgres)
make_targets+=( "postgres ")
;;
daemons|yb-daemons)
make_targets+=( "yb-master" "yb-tserver" "postgres" )
;;
packaged|packaged-targets)
for packaged_target in $( "$YB_SRC_ROOT"/build-support/list_packaged_targets.py ); do
make_targets+=( "$packaged_target" )
done
if [[ ${#make_targets[@]} -eq 0 ]]; then
fatal "Failed to identify the set of targets to build for the release package"
fi
# Explicitly recreate the snapshot for releasing the code!
export YB_RECREATE_INITIAL_SYS_CATALOG_SNAPSHOT=1
make_targets+=( "initial_sys_catalog_snapshot" )
;;
--skip-build|--sb)
set_flags_to_skip_build
;;
--mvn-opts)
ensure_option_has_arg "$@"
user_mvn_opts+=" $2"
shift
;;
--ninja)
export YB_USE_NINJA=1
;;
--make)
export YB_USE_NINJA=0
;;
--build-root)
ensure_option_has_arg "$@"
predefined_build_root=$2
shift
;;
--python-tests)
run_python_tests=true
;;
--cotire)
export YB_USE_COTIRE=1
force_run_cmake=true
;;
--cmake-args)
ensure_option_has_arg "$@"
if [[ -n $cmake_extra_args ]]; then
cmake_extra_args+=" "
fi
cmake_extra_args+=$2
shift
;;
--make-ninja-extra-args)
ensure_option_has_arg "$@"
if [[ -n $make_ninja_extra_args ]]; then
make_ninja_extra_args+=" "
fi
make_ninja_extra_args+=$2
shift
;;
--host-for-tests)
ensure_option_has_arg "$@"
export YB_HOST_FOR_RUNNING_TESTS=$2
shift
;;
--test-timeout-sec)
ensure_option_has_arg "$@"
export YB_TEST_TIMEOUT=$2
if [[ ! $YB_TEST_TIMEOUT =~ ^[0-9]+$ ]]; then
fatal "Invalid value for test timeout: '$YB_TEST_TIMEOUT'"
fi
shift
;;
--sanitizer-extra-options|--extra-sanitizer-options)
ensure_option_has_arg "$@"
export YB_SANITIZER_EXTRA_OPTIONS=$2
shift
;;
--sanitizer-verbosity)
ensure_option_has_arg "$@"
YB_SANITIZER_EXTRA_OPTIONS=${YB_SANITIZER_EXTRA_OPTIONS:-}
export YB_SANITIZER_EXTRA_OPTIONS+=" verbosity=$2"
shift
;;
--no-report)
show_report=false
;;
--tp|--test-parallelism)
ensure_option_has_arg "$@"
test_parallelism=$2
validate_numeric_arg_range "test-parallelism" "$test_parallelism" \
"$MIN_REPEATED_TEST_PARALLELISM" "$MAX_REPEATED_TEST_PARALLELISM"
shift
;;
--remove-successful-test-logs)
export YB_REMOVE_SUCCESSFUL_JAVA_TEST_OUTPUT=1
;;
--stop-at-failure|--stop-on-failure|--saf|--sof)
repeat_unit_test_inherited_args+=( "$1" )
;;
--stack-trace-error-status|--stes)
export YB_STACK_TRACE_ON_ERROR_STATUS=1
;;
--stack-trace-error-status-re|--stesr)
ensure_option_has_arg "$@"
export YB_STACK_TRACE_ON_ERROR_STATUS_RE=$2
shift
;;
--clean-postgres)
clean_postgres=true
;;
--no-postgres|--skip-postgres|--np|--sp)
export YB_SKIP_POSTGRES_BUILD=1
;;
--gen-compilation-db|--gcdb)
export_compile_commands=true
;;
--run-java-test-methods-separately|--rjtms)
export YB_RUN_JAVA_TEST_METHODS_SEPARATELY=1
;;
--rebuild-postgres)
clean_postgres=true
make_targets+=( postgres )
;;
--sanitizers-enable-coredump)
export YB_SANITIZERS_ENABLE_COREDUMP=1
;;
--extra-daemon-flags)
ensure_option_has_arg "$@"
export YB_EXTRA_DAEMON_FLAGS=$2
shift
;;
--java-lint)
java_lint=true
;;
--no-latest-symlink)
export YB_DISABLE_LATEST_SYMLINK=1
;;
--static-analyzer)
export YB_ENABLE_STATIC_ANALYZER=1
;;
*)
if [[ $1 =~ ^(YB_[A-Z0-9_]+|postgres_FLAGS_[a-zA-Z0-9_]+)=(.*)$ ]]; then
env_var_name=${BASH_REMATCH[1]}
# Use "the ultimate fix" from http://bit.ly/setenvvar to set a variable with the name stored
# in another variable to the given value.
env_var_value=${BASH_REMATCH[2]}
eval export $env_var_name=\$env_var_value # note escaped dollar sign
log "Setting $env_var_name to: '$env_var_value' (as specified on the command line)"
unset env_var_name
unset env_var_value
shift
continue
fi
echo "Invalid option: '$1'" >&2
exit 1
esac
shift
done
update_submodules
if [[ -n $YB_GTEST_FILTER && -z $cxx_test_name ]]; then
test_name=${YB_GTEST_FILTER%%.*}
set_cxx_test_name "GTEST_${test_name,,}"
fi
set_use_ninja
handle_predefined_build_root
unset cmake_opts
set_cmake_build_type_and_compiler_type
log "YugaByte build is running on host '$HOSTNAME'"
log "YB_COMPILER_TYPE=$YB_COMPILER_TYPE"
if "$verbose"; then
log "build_type=$build_type, cmake_build_type=$cmake_build_type"
fi
export BUILD_TYPE=$build_type
if "$force_run_cmake" && "$force_no_run_cmake"; then
fatal "--force-run-cmake and --force-no-run-cmake are incompatible"
fi
if "$cmake_only" && [[ $force_no_run_cmake == "true" || $java_only == "true" ]]; then
fatal "--cmake-only is incompatible with --force-no-run-cmake or --java-only"
fi
if "$should_run_ctest"; then
if [[ -n $cxx_test_name ]]; then
fatal "--cxx-test (running one C++ test) is mutually exclusive with" \
"--ctest (running a number of C++ tests)"
fi
if [[ -n $java_test_name ]]; then
fatal "--java-test (running one Java test) is mutually exclusive with " \
"--ctest (running a number of C++ tests)"
fi
if ! "$run_java_tests"; then
build_java=false