diff options
author | Daniel Moody <daniel.moody@mongodb.com> | 2022-08-19 14:52:21 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-08-19 15:52:01 +0000 |
commit | 61b444d5fe82e6ebfd0bb847500b9aa2a5d4de96 (patch) | |
tree | 492eab15ca0cbca0ae5260a34c86691027c00e7b /etc | |
parent | 36e1574c92a0d89844c55d678e0aea5f3e4cc891 (diff) | |
download | mongo-61b444d5fe82e6ebfd0bb847500b9aa2a5d4de96.tar.gz |
SERVER-68116 switch to no unittest alias for static builders.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/evergreen_yml_components/definitions.yml | 21 | ||||
-rw-r--r-- | etc/evergreen_yml_components/variants/sanitizer.yml | 6 |
2 files changed, 22 insertions, 5 deletions
diff --git a/etc/evergreen_yml_components/definitions.yml b/etc/evergreen_yml_components/definitions.yml index 86dbeff99a6..404e5c6b9ca 100644 --- a/etc/evergreen_yml_components/definitions.yml +++ b/etc/evergreen_yml_components/definitions.yml @@ -2426,6 +2426,16 @@ tasks: targets: install-all-meta compiling_for_test: true +- name: compile_all_but_not_unittests + tags: [] + depends_on: + - name: compile_dist_test + commands: + - func: "scons compile" + vars: + targets: install-all-meta-but-not-unittests + compiling_for_test: true + ## clang_tidy - run clang_tidy - name: clang_tidy tags: [] @@ -7516,8 +7526,9 @@ task_groups: - compile_all - package -# The *no_unittests_TG taskgroups remove compile/run unittests to work around -# limitations in the size of debug info. See SERVER-68024. +# The *no_unittests_TG taskgroups are useful for static builds, +# were the static binaries of the unittests can take up to +# a terabyte of data. - <<: *compile_task_group_template name: compile_test_and_package_serial_no_unittests_TG tasks: @@ -7527,6 +7538,7 @@ task_groups: - compile_dbtest - run_dbtest - archive_dbtest + - compile_all_but_not_unittests - package - <<: *compile_task_group_template @@ -7541,8 +7553,12 @@ task_groups: - run_dbtest - archive_dbtest - compile_upload_benchmarks + - compile_all - package +# The *no_unittests_TG taskgroups are useful for static builds, +# were the static binaries of the unittests can take up to +# a terabyte of data. - <<: *compile_task_group_template name: compile_test_benchmark_and_package_serial_no_unittests_TG tasks: @@ -7553,6 +7569,7 @@ task_groups: - run_dbtest - archive_dbtest - compile_upload_benchmarks + - compile_all_but_not_unittests - package - <<: *compile_task_group_template diff --git a/etc/evergreen_yml_components/variants/sanitizer.yml b/etc/evergreen_yml_components/variants/sanitizer.yml index 8530fbc2dab..6034e09cccc 100644 --- a/etc/evergreen_yml_components/variants/sanitizer.yml +++ b/etc/evergreen_yml_components/variants/sanitizer.yml @@ -23,7 +23,7 @@ buildvariants: test_flags: --excludeWithAnyTags=requires_fast_memory,requires_ocsp_stapling separate_debug: off tasks: - - name: compile_test_and_package_serial_no_unittests_TG + - name: compile_test_and_package_serial_TG - name: .aggfuzzer .common !.feature_flag_guarded - name: free_monitoring - name: .jstestfuzz !.initsync @@ -55,7 +55,7 @@ buildvariants: separate_debug: off large_distro_name: rhel80-build tasks: - - name: compile_test_benchmark_and_package_serial_no_unittests_TG + - name: compile_test_benchmark_and_package_serial_TG - name: .aggregation !.feature_flag_guarded - name: .auth - name: audit @@ -126,7 +126,7 @@ buildvariants: separate_debug: off large_distro_name: rhel80-build tasks: - - name: compile_test_benchmark_and_package_serial_no_unittests_TG + - name: compile_test_benchmark_and_package_serial_TG - name: .aggregation !.feature_flag_guarded - name: .auth - name: audit |