##################################################### # A note on expansions # ##################################################### # Expansions usually appear in the form ${key|default} # If 'key' is found in the executor's map of currently known # expansions, the corresponding value is used. If the key can # not be found, the default is used. # # Arbitrary expansions can be specified in the YAML configuration # files in the following places: # - The 'expansions' field for buildvariants (branch file) # - The 'expansions' field for distros (distros file) # # A number of 'built-in' expansions are also available for use; these include: # - environment variables available on the host machine # - 'workdir' (references the executor's work directory). # - 'task_id' (references the task id of the task the executor is working on). # - 'build_variant' (references the executing task's buildvariant). # - 'config_root' (references the root directory for the executor's configuration artifacts). stepback: true command_type: system # Files that match an ignore-list pattern will not trigger a build, if they're the only modified # files in the patch. ignore: - ".*" - "!.clang-format" - "!.eslintrc.yml" - "*.md" - "*.rst" - "*.txt" - "/distsrc/**" - "/docs/**" - "/etc/*.yml" - "!/etc/evergreen.yml" - "README" ## Some variables for convenience: variables: # Used when the tests it runs depend only on mongod, mongos, the mongo shell and the tools. - &task_template name: template depends_on: - name: compile commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --help run_multiple_jobs: false max_jobs: 0 # If set in combination with run_multiple_jobs, will cap the number of jobs used. # Used for tests that invoke resmoke.py and require no additional setup. - &task_depending_on_all_template <<: *task_template depends_on: - name: compile_all # Used to list modules to retrieve from GitHub. - &git_get_project command: git.get_project params: directory: src revisions: # for each module include revision as : ${_rev} enterprise: ${enterprise_rev} - &generate_compile_expansions command: shell.exec params: working_dir: src script: | set -o errexit set -o verbose # We get the raw version string (r1.2.3-45-gabcdef) from git MONGO_VERSION=$(git describe) # If this is a patch build, we add the patch version id to the version string so we know # this build was a patch, and which evergreen task it came from if [ "${is_patch|}" = "true" ]; then MONGO_VERSION="$MONGO_VERSION-patch-${version_id}" fi # This script converts the generated version string into a sanitized version string for # use by scons and uploading artifacts as well as information about for the scons cache. echo $MONGO_VERSION | SCONS_CACHE_MODE=${scons_cache_mode|nolinked} USE_SCONS_CACHE=${use_scons_cache|false} ${python|python} buildscripts/generate_compile_expansions.py | tee compile_expansions.yml - &apply_compile_expansions command: expansions.update params: file: src/compile_expansions.yml - &jepsen_config_vars jepsen_key_time_limit: --key-time-limit 15 jepsen_protocol_version: --protocol-version 1 jepsen_read_concern: "" jepsen_read_with_find_and_modify: "" jepsen_storage_engine: "" jepsen_test_name: "" # Empirically, we've had greater success in reproducing the issues found in MongoDB versions # 3.4.0-rc3 and 3.4.0-rc4 when running Jepsen with at least --time-limit=600. jepsen_time_limit: --time-limit 1200 jepsen_write_concern: "" # Template for running Jepsen tests - &run_jepsen_template name: run_jepsen_template depends_on: - name: compile commands: - func: "do setup" - func: "do jepsen setup" - func: "run jepsen test" vars: <<: *jepsen_config_vars - &jstestfuzz_config_vars resmoke_args: --help # resmoke_args needs to be overridden to specify one of the jstestfuzz suites should_shuffle: false continue_on_failure: false - &run_jstestfuzz_tests func: "run tests" # Terminate the function when there has been no output to stdout for 30 minutes. E.g. when something is stuck in an infinite loop. # resmoke.py writes the test output to logkeeper and only writes to stdout when starting the next test. # resmoke.py not producing output on stdout means that the test is still running and presumably not going to finish. # Note that timeout_secs is different from exec_timeout_secs, which applies to a task and times out regardless of whether output has been written to stdout. timeout_secs: 1800 vars: <<: *jstestfuzz_config_vars # Used for tests that invoke 'resmoke.py --suites=jstestfuzz*'. - &jstestfuzz_template name: jstestfuzz_template exec_timeout_secs: 14400 # Time out the task if it runs for more than 4 hours. depends_on: - name: compile commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" - *run_jstestfuzz_tests # buildvariants in this list have debug symbols which are uploaded to s3. # Note this sorted list contains all buildvariants. A buildvariant that does not # create separate symbol files is commented out. - &debug_symbol_variants - amazon - debian81 - enterprise-debian81-64 - enterprise-linux-64-amazon-ami - enterprise-osx-108 - enterprise-rhel-62-64-bit - enterprise-rhel-62-64-bit-coverage - enterprise-rhel-62-64-bit-inmem - enterprise-rhel-70-64-bit - enterprise-rhel-71-ppc64le - enterprise-rhel-71-ppc64le-inmem - enterprise-rhel-72-s390x - enterprise-rhel-72-s390x-inmem - enterprise-suse12-64 - enterprise-suse12-s390x # - enterprise-ubuntu-dynamic-1604-64-bit # Does not create separate symbol files. - enterprise-ubuntu1204-64 - enterprise-ubuntu1404-64 - enterprise-ubuntu1604-64 - enterprise-ubuntu1604-arm64 # - enterprise-ubuntu1604-clang-3.7-libcxx # Does not create separate symbol files. - enterprise-ubuntu1604-ppc64le - enterprise-ubuntu1604-s390x - enterprise-windows-64 - enterprise-windows-64-2k8-debug-unoptimized - enterprise-windows-64-inmem - initsync-3dot2-rhel-62 - linux-64 - linux-64-debug - linux-64-duroff - linux-64-ephemeralForTest - linux-64-repeated-execution - osx-108 - osx-108-debug - osx-108-ssl - rhel62 - rhel70 - suse12 - ubuntu1204 - ubuntu1404 - ubuntu1604 - ubuntu1604-arm64 - ubuntu1604-asan - ubuntu1604-debug-asan - ubuntu1604-debug-ubsan - windows-64 - windows-64-2k8 - windows-64-2k8-debug - windows-64-2k8-ssl ####################################### # Functions # ####################################### functions: "fetch artifacts" : &fetch_artifacts command: s3.get params: aws_key: ${aws_key} aws_secret: ${aws_secret} remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/artifacts/${build_id}.tgz bucket: mciuploads extract_to: src "fetch binaries" : &fetch_binaries command: s3.get params: aws_key: ${aws_key} aws_secret: ${aws_secret} remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/binaries/mongo-${build_id}.${ext|tgz} bucket: mciuploads local_file: src/mongo-binaries.tgz "extract binaries" : &extract_binaries command: shell.exec params: working_dir: src script: | set -o errexit ${decompress} mongo-binaries.tgz cp mongodb*/bin/* . "check binary version" : &check_binary_version command: shell.exec params: working_dir: src script: | set -o errexit mongo_binary=$(find mongodb*/bin -name mongo${exe}) # There should only be one mongo shell if [ $(echo $mongo_binary | wc -w) -ne 1 ]; then echo "There is more than 1 extracted mongo binary: $mongo_binary" exit 1 fi bin_ver=$(${python|/opt/mongodbtoolchain/v2/bin/python2} -c "import yaml; print(yaml.safe_load(open('compile_expansions.yml'))['version']);" | tr -d '[ \r\n]') # Due to SERVER-23810, we cannot use $mongo_binary --quiet --nodb --eval "version();" mongo_ver=$($mongo_binary --version | perl -pe '/version v(.*)$/; $_ = $1;' | tr -d '[ \r\n]') # The versions must match if [ "$bin_ver" != "$mongo_ver" ]; then echo "The mongo version is $mongo_ver, expected version is $bin_ver" exit 1 fi "get buildnumber" : &get_buildnumber command: keyval.inc params: key: "${build_variant}_v3.4" destination: "builder_num" "run diskstats": &run_diskstats command: shell.exec params: background: true system_log: true script: | set -o errexit set -o verbose # On Windows we can use typeperf.exe to dump performance counters. if [ "Windows_NT" = "$OS" ]; then typeperf -qx PhysicalDisk | grep Disk | grep -v _Total > disk_counters.txt typeperf -cf disk_counters.txt -si 5 -o mongo-diskstats # Linux: iostat -t option for timestamp. elif iostat -tdmx > /dev/null 2>&1; then iostat -tdmx 5 > mongo-diskstats # OSX: Simulate the iostat timestamp. elif iostat -d > /dev/null 2>&1; then iostat -d -w 5 | while IFS= read -r line; do printf '%s %s\n' "$(date +'%m/%d/%Y %H:%M:%S')" "$line" >> mongo-diskstats; done # Check if vmstat -t is available. elif vmstat -td > /dev/null 2>&1; then vmstat -td 5 > mongo-diskstats # Check if vmstat -T d is available. elif vmstat -T d > /dev/null 2>&1; then vmstat -T d 5 > mongo-diskstats else printf "Cannot collect mongo-diskstats on this platform\n" fi # Run a monitor process as a background, system task to periodically # display how many threads interesting processes are using. "monitor process threads": &monitor_process_threads command: shell.exec params: background: true system_log: true script: | proc_list="(bsondump|java|lein|mongo|python|_test$|_test\.exe$)" if [ "Windows_NT" = "$OS" ]; then get_pids() { proc_pids=$(tasklist /fo:csv | awk -F'","' '{x=$1; gsub("\"","",x); print $2, x}' | grep -i -E $1 | cut -f1 -d ' '); } get_process_info() { proc_name=""; proc_info=$(wmic process where "ProcessId=\"$1\"" get "Name,ProcessId,ThreadCount" /format:csv 2> /dev/null | grep $1); if [ ! -z $proc_info ]; then proc_name=$(echo $proc_info | cut -f2 -d ','); proc_threads=$(echo $proc_info | cut -f4 -d ','); fi; } else get_pids() { proc_pids=$(pgrep $1); } get_process_info() { proc_name=$(ps -p $1 -o comm=); # /proc is available on Linux platforms if [ -f /proc/$1/status ]; then ${set_sudo} proc_threads=$($sudo grep Threads /proc/$1/status | sed "s/\s//g" | cut -f2 -d ":"); else proc_threads=$(ps -AM $1 | grep -vc PID); fi; } fi while [ 1 ] do get_pids $proc_list if [ ! -z "$proc_pids" ]; then printf "Running process/thread counter\n" printf "PROCESS\tPID\tTHREADS\n" fi for pid in $proc_pids do get_process_info $pid if [ ! -z "$proc_name" ]; then printf "$proc_name\t$pid\t$proc_threads\n" fi done sleep 60 done "set up credentials" : &set_up_credentials command: shell.exec params: working_dir: src silent: true script: | cat > mci.buildlogger < ${private_key_file|/dev/null} chmod 0600 ${private_key_file|/dev/null} fi if [ ! -d ~.aws ]; then mkdir -p ~/.aws fi # If ${aws_profile_remote} is not specified then the config & credentials are # stored in the 'default' profile. aws_profile="${aws_profile_remote|default}" # The profile in the config file is specified as [profile ], except # for [default], see http://boto3.readthedocs.io/en/latest/guide/configuration.html if [ $aws_profile = "default" ] ; then aws_profile_config="[default]" else aws_profile_config="[profile $aws_profile]" fi cat <> ~/.aws/config $aws_profile_config region = us-east-1 EOF # The profile in the credentials file is specified as []. cat <> ~/.aws/credentials [$aws_profile] aws_access_key_id = ${aws_key_remote} aws_secret_access_key = ${aws_secret_remote} EOF cat < ~/.boto [Boto] https_validate_certificates = False EOF "call BF Suggestion service": command: shell.exec params: working_dir: src shell: bash silent: true script: | report_file="report.json" # Check if the report file exists and has failures. if [ -f $report_file ] && grep -Eq "\"failures\": [1-9]" $report_file; then # Calling the BF Suggestion server endpoint to start feature extraction. payload="{\"task_id\": \"${task_id}\", \"execution\": ${execution}}" echo "Sending task info to the BF suggestion service" # The --user option is passed through stdin to avoid showing in process list. user_option="--user ${bfsuggestion_user}:${bfsuggestion_password}" curl --header "Content-Type: application/json" \ --data "$payload" \ --max-time 10 \ --silent \ --show-error \ --config - \ https://bfsuggestion.corp.mongodb.com/tasks <<< $user_option echo "Request to BF Suggestion service status: $?" fi "upload debugsymbols" : &upload_debugsymbols command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: src/mongo-debugsymbols.tgz remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/debugsymbols/debugsymbols-${build_id}.${ext|tgz} bucket: mciuploads permissions: public-read content_type: ${content_type|application/x-gzip} build_variants: *debug_symbol_variants "fetch debugsymbols archive" : &fetch_debugsymbols_archive command: s3.get params: aws_key: ${aws_key} aws_secret: ${aws_secret} remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/debugsymbols/debugsymbols-${build_id}.${ext|tgz} bucket: mciuploads local_file: src/mongo-debugsymbols.tgz build_variants: *debug_symbol_variants "extract debugsymbols" : &extract_debugsymbols command: shell.exec params: working_dir: src build_variants: *debug_symbol_variants script: | set -o errexit set -o verbose ${decompress} mongo-debugsymbols.tgz mv mongodb*/mongo.{debug,dSYM,pdb} mongodb*/mongod.{debug,dSYM,pdb} mongodb*/mongos.{debug,dSYM,pdb} . 2>/dev/null || true rm -r mongodb*/*.{debug,dSYM,pdb} mongo-debugsymbols.tgz 2>/dev/null || true "build new tools" : command: shell.exec params: working_dir: src/src/mongo/gotools/src/github.com/mongodb/mongo-tools script: | set -o verbose set -o errexit # make sure newlines in the scripts are handled correctly by windows if [ "Windows_NT" = "$OS" ]; then set -o igncr fi; # set_goenv provides set_goenv(), print_ldflags() and print_tags() used below . ./set_goenv.sh GOROOT="" set_goenv || exit env | grep ^GO go version build_tools="bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop mongooplog" if [ "${build_mongoreplay}" = "true" ]; then build_tools="$build_tools mongoreplay" fi for i in $build_tools; do go build $(buildflags) -ldflags "$(print_ldflags)" ${args} -tags "$(print_tags ${tooltags})" -o "../../../../../../mongo-tools/$i${exe|}" $i/main/$i.go "../../../../../../mongo-tools/$i${exe|}" --version file "../../../../../../mongo-tools/$i${exe|}" done mkdir -p ../../../../../../mongo-tools/distsrc cp THIRD-PARTY-NOTICES ../../../../../../mongo-tools/distsrc/THIRD-PARTY-NOTICES.gotools "do setup" : - *fetch_artifacts - *fetch_binaries - *extract_binaries - *check_binary_version - *get_buildnumber - *set_up_credentials - *run_diskstats - *monitor_process_threads "set up virtualenv" : command: shell.exec type: test params: script: | # exit immediately if virtualenv is not found set -o errexit set -o verbose python_loc=$(which ${python|/opt/mongodbtoolchain/v2/bin/python2}) if [ "Windows_NT" = "$OS" ]; then python_loc=$(cygpath -w $python_loc) fi # Set up virtualenv in ${workdir} virtualenv --python "$python_loc" --system-site-packages "${workdir}/venv" "run tests" : - command: expansions.update params: updates: - key: aws_key_remote value: ${mongodatafiles_aws_key} - key: aws_profile_remote value: mongodata_aws - key: aws_secret_remote value: ${mongodatafiles_aws_secret} - *set_up_remote_credentials - command: shell.exec type: test params: working_dir: src script: | set -o errexit set -o verbose # Set the TMPDIR environment variable to be a directory in the task's working # directory so that temporary files created by processes spawned by resmoke.py get # cleaned up after the task completes. This also ensures the spawned processes # aren't impacted by limited space in the mount point for the /tmp directory. export TMPDIR="${workdir}/tmp" mkdir -p $TMPDIR ${activate_virtualenv} pip install boto3==1.5.27 if [ -f /proc/self/coredump_filter ]; then # Set the shell process (and its children processes) to dump ELF headers (bit 4), # anonymous shared mappings (bit 1), and anonymous private mappings (bit 0). echo 0x13 > /proc/self/coredump_filter if [ -f /sbin/sysctl ]; then # Check that the core pattern is set explicitly on our distro image instead # of being the OS's default value. This ensures that coredump names are consistent # across distros and can be picked up by Evergreen. core_pattern=$(/sbin/sysctl -n "kernel.core_pattern") if [ "$core_pattern" = "dump_%e.%p.core" ]; then echo "Enabling coredumps" ulimit -c unlimited fi fi fi extra_args="" if [ ${run_multiple_jobs|false} = true ]; then processor_architecture=$(uname -m) num_jobs_available=${num_jobs_available|1} # Reduce the number of available jobs by half when running any sharding*, replica_sets* # and select jsCore passthrough tasks on Windows and ARM to avoid overwhelming test hosts. if [ "Windows_NT" = "$OS" ] || [ "aarch64" = $processor_architecture ]; then case "${task_name}" in replica_sets_initsync_jscore_passthrough \ |replica_sets_initsync_static_jscore_passthrough \ |replica_sets_resync_static_jscore_passthrough \ |replica_sets* \ |sharding* \ ) num_jobs_available=$((${num_jobs_available|2} / 2)) echo "Reducing jobs from ${num_jobs_available|1} to $num_jobs_available" ;; esac fi if [ ${max_jobs|0} -gt 0 ] && [ ${max_jobs|0} -lt $num_jobs_available ]; then extra_args="$extra_args --jobs=${max_jobs}" else extra_args="$extra_args --jobs=$num_jobs_available" fi fi if [ ${should_shuffle|true} = true ]; then extra_args="$extra_args --shuffle" fi if [ ${continue_on_failure|true} = true ]; then extra_args="$extra_args --continueOnFailure" fi # Default storageEngineCacheSizeGB to 1. Override on individual test config if needed. # resmoke will assign to the appropriate parameter on storage engines that support it. set +o errexit echo "${resmoke_args}" | grep -q storageEngineCacheSizeGB if [ $? -eq 1 ]; then extra_args="$extra_args --storageEngineCacheSizeGB=1" fi set -o errexit # Combine the exclusion tags from both the variant and the task. extra_args="$extra_args --excludeWithAnyTags=${task_excluded_tags},${variant_excluded_flags}" path_value="$PATH" if [ ${variant_path_suffix} ]; then path_value="$path_value:${variant_path_suffix}" fi if [ ${task_path_suffix} ]; then path_value="$path_value:${task_path_suffix}" fi ${resmoke_wrapper} \ PATH="$path_value" \ AWS_PROFILE=${aws_profile_remote} \ ${san_symbolizer} \ ${lang_environment} \ ${san_options} \ ${rlp_environment} \ $python buildscripts/resmoke.py \ ${resmoke_args} \ $extra_args ${test_flags} \ --log=buildlogger \ --taskId=${task_id} \ --taskName=${task_name} \ --executionNumber=${execution} \ --projectName=${project} \ --variantName=${build_variant} \ --distroId=${distro_id} \ --gitRevision=${revision} \ --archiveFile=archive.json \ --reportFile=report.json "do jepsen setup" : - command: shell.exec params: working_dir: src script: | set -o errexit # Build libfaketime. A version of libfaketime at least as new as v0.9.6-9-g75896bd is # required to use the FAKETIME_NO_CACHE and FAKETIME_TIMESTAMP_FILE environment variables. # Additionally, a version of libfaketime containing the changes mentioned in SERVER-29336 # is required to avoid needing to use libfaketimeMT.so.1 and serializing all calls to # fake_clock_gettime() with a mutex. git clone --branch=for-jepsen --depth=1 git@github.com:10gen/libfaketime.git cd libfaketime branch=$(git symbolic-ref --short HEAD) commit=$(git show -s --pretty=format:"%h - %an, %ar: %s") echo "Git branch: $branch, commit: $commit" make PREFIX=$(pwd)/build/ LIBDIRNAME='.' install - command: shell.exec params: working_dir: src script: | set -o errexit git clone --branch=jepsen-mongodb-master --depth=1 git@github.com:10gen/jepsen.git jepsen-mongodb cd jepsen-mongodb branch=$(git symbolic-ref --short HEAD) commit=$(git show -s --pretty=format:"%h - %an, %ar: %s") echo "Git branch: $branch, commit: $commit" lein install - command: shell.exec params: working_dir: src script: | set -o errexit ${python|/opt/mongodbtoolchain/v2/bin/python2} -c 'import socket; num_nodes = 5; print("\n".join(["%s:%d" % (socket.gethostname(), port) for port in range(20000, 20000 + num_nodes)]))' > nodes.txt "run jepsen test" : - command: shell.exec type: test timeout_secs: 2700 # Timeout test if there is no output for more than 45 minutes. params: working_dir: src/jepsen-mongodb script: | set -o verbose # Set the TMPDIR environment variable to be a directory in the task's working # directory so that temporary files created by processes spawned by jepsen get # cleaned up after the task completes. This also ensures the spawned processes # aren't impacted by limited space in the mount point for the /tmp directory. # We also need to set the _JAVA_OPTIONS environment variable so that lein will # recognize this as the default temp directory. export TMPDIR="${workdir}/tmp" mkdir -p $TMPDIR export _JAVA_OPTIONS=-Djava.io.tmpdir=$TMPDIR start_time=$(date +%s) lein run test --test ${jepsen_test_name} \ --mongodb-dir ../ \ --working-dir ${workdir}/src/jepsen-workdir \ --clock-skew faketime \ --libfaketime-path ${workdir}/src/libfaketime/build/libfaketime.so.1 \ --virtualization none \ --nodes-file ../nodes.txt \ ${jepsen_key_time_limit} \ ${jepsen_protocol_version} \ ${jepsen_read_concern} \ ${jepsen_read_with_find_and_modify} \ ${jepsen_storage_engine} \ ${jepsen_time_limit} \ ${jepsen_write_concern} \ 2>&1 \ | tee jepsen_${task_name}_${execution}.log end_time=$(date +%s) elapsed_secs=$((end_time-start_time)) # Since we cannot use PIPESTATUS to get the exit code from the "lein run ..." pipe in dash shell, # we will check the output for success, failure or setup error. Note that 'grep' returns with exit code # 0 if it finds a match, and exit code 1 if no match is found. grep -q "Everything looks good" jepsen_${task_name}_${execution}.log grep_exit_code=$? if [ $grep_exit_code -eq 0 ]; then status='"pass"' failures=0 final_exit_code=0 else grep -q "Analysis invalid" jepsen_${task_name}_${execution}.log grep_exit_code=$? if [ $grep_exit_code -eq 0 ]; then status='"fail"' failures=1 final_exit_code=1 else # If the failure is due to setup, then this is considered a system failure. echo $grep_exit_code > jepsen_system_failure_${task_name}_${execution} exit 0 fi fi # Create report.json echo "{\"failures\": $failures, \"results\": [{\"status\": $status, \"exit_code\": $final_exit_code, \"test_file\": \"${task_name}\", \"start\": $start_time, \"end\": $end_time, \"elapsed\": $elapsed_secs}]}" > ../report.json exit $final_exit_code - command: shell.exec params: working_dir: src/jepsen-mongodb script: | set -o verbose # Jepsen system failure if file exists. if [ -f jepsen_system_failure_${task_name}_${execution} ]; then exit $(cat jepsen_system_failure_${task_name}_${execution}) fi # This function should only be called from patch-build-only tasks. "get added and modified patch files": command: shell.exec params: working_dir: src shell: bash script: | set -o verbose set -o errexit git diff HEAD --name-only --line-prefix="${workdir}/src/" --diff-filter=d >> modified_and_created_patch_files.txt if [ -d src/mongo/db/modules/enterprise ]; then pushd src/mongo/db/modules/enterprise git diff HEAD --name-only --line-prefix="${workdir}/src/src/mongo/db/modules/enterprise/" --diff-filter=d >> ~1/modified_and_created_patch_files.txt popd fi "setup jstestfuzz": - command: shell.exec params: working_dir: src shell: bash script: | set -o errexit set -o verbose ${add_nodejs_to_path} git clone git@github.com:10gen/jstestfuzz.git pushd jstestfuzz npm install npm run prepare popd "lint fuzzer sanity patch": - command: shell.exec type: test params: working_dir: src shell: bash script: | set -eo pipefail set -o verbose ${add_nodejs_to_path} # Run parse-jsfiles on 50 files at a time with 32 processes in parallel. # Grep returns 1 if it fails to find a match. (grep "\.js$" modified_and_created_patch_files.txt || true) | xargs -P 32 -L 50 npm run --prefix jstestfuzz parse-jsfiles -- "lint fuzzer sanity all": - command: shell.exec type: test params: working_dir: src shell: bash script: | set -eo pipefail set -o verbose ${add_nodejs_to_path} # Run parse-jsfiles on 50 files at a time with 32 processes in parallel. find "$PWD/jstests" "$PWD/src/mongo/db/modules/enterprise" -name "*.js" -print | xargs -P 32 -L 50 npm run --prefix jstestfuzz parse-jsfiles -- "run jstestfuzz": - command: shell.exec params: working_dir: src script: | set -o errexit set -o verbose cp mongodb*/bin/mongod . git clone --depth 1 git@github.com:10gen/mongo-enterprise-modules.git jstests/enterprise_tests git clone --depth 1 git@github.com:10gen/QA.git jstests/qa_tests - command: shell.exec params: working_dir: src/jstestfuzz script: | set -o errexit set -o verbose ${add_nodejs_to_path} npm run jstestfuzz -- --jsTestsDir ../jstests ${jstestfuzz_vars} --branch ${branch_name} - command: archive.targz_pack params: target: "jstests.tgz" source_dir: "src/jstestfuzz" include: - "out/*.js" - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: jstests.tgz remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/jstestfuzz/${task_id}-${execution}.tgz bucket: mciuploads permissions: public-read content_type: ${content_type|application/x-gzip} display_name: Generated Tests - Execution ${execution} "do multiversion setup" : command: shell.exec params: working_dir: src script: | set -o errexit set -o verbose rm -rf /data/install /data/multiversion # 3.2.1 is needed to check cross version compatibility as it is the final version # to use the old style replSetUpdatePosition command. # 3.2.1 is also needed to check for a correct implementation of SERVER-23299. ${python|/opt/mongodbtoolchain/v2/bin/python2} buildscripts/setup_multiversion_mongodb.py /data/install /data/multiversion ${multiversion_edition|"base"} ${multiversion_platform_arch|"linux/x86_64"} "2.6" "3.0" "3.2" "3.2.1" "3.4.23" "cleanup environment" : command: shell.exec params: script: | set -o errexit set -o verbose rm -rf src /data/db/* mongo-diskstats* mongo-*.tgz ~/.aws "kill processes" : command: shell.exec params: silent: true script: | process_kill_list="(^cl\.exe$|bsondump|java|lein|lldb|mongo|python|_test$|_test\.exe$)" # Exclude Evergreen agent processes process_exclude_list="(main|evergreen)" if [ "Windows_NT" = "$OS" ]; then # Get the list of Windows tasks (tasklist list format): # - Transpose the Image Name and PID # - The first column has the process ID # - The second column (and beyond) has task name # - Grep for the task names of interest while ignoring any names that are in the exclude list processes=$(tasklist /fo:csv | awk -F'","' '{x=$1; gsub("\"","",x); print $2, x}' | grep -i -E "$process_kill_list" | grep -i -v -E "$process_exclude_list") # Kill the Windows process by process ID with force (/f) kill_process () { pid=$(echo $1 | cut -f1 -d ' '); echo "Killing process $1"; taskkill /pid "$pid" /f; } else # Get the list of Unix tasks (pgrep full & long): # - Grep for the task names of interest while ignoring any names that are in the exclude list # - The first column has the process ID # - The second column (and beyond) has task name # There are 2 "styles" of pgrep, figure out which one works pgrep_list_full=$(pgrep -f --list-full ".*" 2>&1 > /dev/null) if [ -z "$pgrep_list_full" ]; then pgrep_list=$(pgrep -f --list-full "$process_kill_list") else pgrep_list=$(pgrep -f -l "$process_kill_list") fi # There are 2 "styles" of grep, figure out which one works grep=grep grep_extended=$(echo "a" | $grep -E "(a)" 2>&1 > /dev/null) if [ ! -z "$grep_extended" ]; then # Extended grep on Solaris is in the following location grep=/usr/xpg4/bin/grep if [ ! -f $grep ]; then echo "Extended $grep does not exist" return 1 fi fi # Since a process name might have a CR or LF in it, we need to delete any lines from # pgrep which do not start with space(s) and 1 digit and trim any leading spaces. processes=$(echo "$pgrep_list" | $grep -i -v -E "$process_exclude_list" | sed -e '/^ *[0-9]/!d; s/^ *//; s/[[:cntrl:]]//g;') # Kill the Unix process ID with signal KILL (9) kill_process () { pid=$(echo $1 | cut -f1 -d ' '); echo "Killing process $1"; kill -9 $pid; } fi # Since a full process name can have spaces, the IFS (internal field separator) # should not include a space, just a LF & CR IFS=$(printf "\n\r") for process in $processes do kill_process "$process" done "run kitchen": command: shell.exec type: test params: shell: bash working_dir: src/buildscripts/package_test script: | set -o errexit export KITCHEN_ARTIFACTS_URL="https://s3.amazonaws.com/mciuploads/${project}/${build_variant}/${revision}/artifacts/${build_id}-packages.tgz" export KITCHEN_SECURITY_GROUP="${kitchen_security_group}" export KITCHEN_SSH_KEY_ID="${kitchen_ssh_key_id}" export KITCHEN_SUBNET="${kitchen_subnet}" export KITCHEN_VPC="${kitchen_vpc}" for i in {1..3} do if ! kitchen verify "${packager_distro}"; then verified="false" kitchen destroy "${packager_distro}" || true sleep 30 else verified="true" break fi done kitchen destroy "${packager_distro}" || true test "$verified" = "true" pre: - command: shell.track - func: "kill processes" - func: "cleanup environment" - func: "set up virtualenv" - command: expansions.update params: updates: - key: activate_virtualenv value: | # check if virtualenv is set up if [ -d "${workdir}/venv" ]; then if [ "Windows_NT" = "$OS" ]; then # Need to quote the path on Windows to preserve the separator. . "${workdir}/venv/Scripts/activate" 2> /tmp/activate_error.log else . ${workdir}/venv/bin/activate 2> /tmp/activate_error.log fi if [ $? -ne 0 ]; then echo "Failed to activate virtualenv: $(cat /tmp/activate_error.log)" fi python=python else python=${python|/opt/mongodbtoolchain/v2/bin/python2} fi echo "python set to $(which $python)" - key: set_sudo value: | set -o | grep errexit | grep on errexit_on=$? # Set errexit "off". set +o errexit sudo= # Use sudo, if it is supported. sudo date > /dev/null 2>&1 if [ $? -eq 0 ]; then sudo=sudo fi # Set errexit "on", if previously enabled. if [ $errexit_on -eq 0 ]; then set -o errexit fi - key: add_nodejs_to_path value: | # Add node and npm binaries to PATH if [ "Windows_NT" = "$OS" ]; then # An "npm" directory might not have been created in %APPDATA% by the Windows installer. # Work around the issue by specifying a different %APPDATA% path. # See: https://github.com/nodejs/node-v0.x-archive/issues/8141 export APPDATA=${workdir}/npm-app-data export PATH="$PATH:/cygdrive/c/Program Files (x86)/nodejs" # Windows location # TODO: this is to work around BUILD-8652 cd "$(pwd -P | sed 's,cygdrive/c/,cygdrive/z/,')" else export PATH="$PATH:/opt/node/bin" fi - command: shell.exec params: system_log: true script: | ulimit -a # Clear the dmesg ring buffer. The "post" phase will check dmesg for OOM messages. ${set_sudo} $sudo dmesg --clear > /dev/null 2>&1 if [ $? -eq 0 ]; then echo "Cleared the dmesg ring buffer" else echo "Could not clear the dmesg ring buffer" fi post: - command: attach.results params: file_location: src/report.json - command: attach.artifacts params: ignore_artifacts_for_spawn: false files: - src/archive.json - func: "call BF Suggestion service" - func: "kill processes" # Print out any Out of Memory killed process messages. - command: shell.exec params: system_log: true working_dir: src # Temporary files created in src will be cleaned up in "pre". script: | ${set_sudo} # Use dmesg -T option, if supported, to display timestamps. dmesg=dmesg dmesg -T > /dev/null 2>&1 if [ $? -eq 0 ]; then dmesg="dmesg -T" fi $sudo $dmesg 2> /dev/null > dmesg.txt if [ $? -ne 0 ]; then echo "Cannot check for OOM (Out of memory) killed processes on this platform" exit 0 fi egrep -i '(Out of memory|OOM[- ]killer|Killed process)' dmesg.txt > oom.txt if [ -s oom.txt ]; then echo "OOM (Out of memory) killed processes detected" cat oom.txt else echo "No OOM (Out of memory) killed processes detected" fi # Process and save coverage data. - command: shell.exec params: working_dir: src script: | set +o errexit if [ -d "./build" ]; then file_list=$(find ./build -type f -name "*.gcda") if [ -n "$file_list" ]; then for gcda_file in $file_list; do echo "Processing file $gcda_file" /opt/mongodbtoolchain/v2/bin/gcov -i $gcda_file base_name=$(echo $gcda_file | rev | cut -f1 -d '/' | cut -f2 -d '.' | rev) gcov_file=$base_name.gcda.gcov if [ -f "$gcov_file" ]; then # Add a prefix to the intermediate file, since it does not have a unique name. # Convert the '/' to '#' in the file path. file_prefix=$(echo $gcda_file | sed -e 's,^\./,,' | rev | cut -f2- -d '/' | rev | tr -s '/' '#') new_gcov_file=$file_prefix#$base_name.gcda.gcov if [ ! -f $new_gcov_file ]; then echo "Renaming gcov intermediate file $gcov_file to $new_gcov_file" mv $gcov_file $new_gcov_file else # We treat this as a fatal condition and remove all of the coverage files. echo "Not renaming $gcov_file as $new_gcov_file already exists!" rm -f *.gcda.gcov exit 1 fi fi done fi fi - command: archive.targz_pack params: target: "src/gcov-intermediate-files.tgz" source_dir: "src" include: - "*.gcda.gcov" - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: "src/gcov-intermediate-files.tgz" remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/gcov/gcov-intermediate-files-${task_id}-${execution}.tgz bucket: mciuploads permissions: public-read content_type: ${content_type|application/x-gzip} display_name: gcov intermediate files - Execution ${execution} optional: true - command: archive.targz_pack params: target: "src/jepsen-mongod-logs.tgz" source_dir: "${workdir}/src/jepsen-workdir" include: - "./**.log" - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: src/jepsen-mongod-logs.tgz remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/jepsen/jepsen-mongod-logs-${task_id}-${execution}.tgz bucket: mciuploads permissions: public-read content_type: ${content_type|application/x-gzip} display_name: Jepsen mongod Logs - ${execution} optional: true # Gather and archive the Jepsen results. - command: archive.targz_pack params: target: "src/jepsen-results.tgz" source_dir: "src/jepsen-mongodb/store" include: - "./**" - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: src/jepsen-results.tgz remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/jepsen/jepsen-results-${task_id}-${execution}.tgz bucket: mciuploads permissions: public-read content_type: ${content_type|application/x-gzip} display_name: Jepsen Test Results - ${execution} optional: true # Gather and archive mongo coredumps. - command: archive.targz_pack params: target: "mongo-coredumps.tgz" source_dir: "./" include: - "./**.core" - "./**.mdmp" # Windows: minidumps - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: mongo-coredumps.tgz remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/coredumps/mongo-coredumps-${build_id}-${task_name}-${execution}.tgz bucket: mciuploads permissions: public-read content_type: ${content_type|application/x-gzip} display_name: Core Dumps - Execution ${execution} optional: true # Gather and archive failed unit test binaries. - command: shell.exec params: working_dir: "src" script: | mkdir unittest_binaries # Find all core files core_files=$(/usr/bin/find -H . -name "dump_*.core" -o -name "*.mdmp" 2> /dev/null) for core_file in $core_files do # A core file name does not always have the executable name that generated it. # See http://stackoverflow.com/questions/34801353/core-dump-filename-gets-thread-name-instead-of-executable-name-with-core-pattern # On platforms with GDB, we get the binary name from core file gdb=/opt/mongodbtoolchain/gdb/bin/gdb if [ -f $gdb ]; then binary_file=$($gdb -batch --quiet -ex "core $core_file" 2> /dev/null | grep "Core was generated" | cut -f2 -d "\`" | cut -f1 -d "'" | cut -f1 -d " ") binary_file_locations=$binary_file else # Find the base file name from the core file name, note it may be truncated. # Remove leading 'dump_' and trailing '..core' or '..mdmp' binary_file=$(echo $core_file | sed "s/.*\///;s/dump_//;s/\..*\.core//;s/\..*\.mdmp//") # Locate the binary file. Since the base file name might be truncated, the find # may return more than 1 file. binary_file_locations=$(/usr/bin/find -H . -name "$binary_file*${exe}" 2> /dev/null) fi if [ -z "$binary_file_locations" ]; then echo "Cannot locate the unittest binary file ($binary_file) that generated the core file $core_file" fi for binary_file_location in $binary_file_locations do new_binary_file=unittest_binaries/$(echo $binary_file_location | sed "s/.*\///") if [ ! -f $new_binary_file ]; then mv $binary_file_location $new_binary_file fi # On Windows if a .pdb symbol file exists, include it in the archive. pdb_file=$(echo $binary_file_location | sed "s/\.exe/.pdb/") if [ -f $pdb_file ]; then new_pdb_file=unittest_binaries/$(echo $pdb_file | sed "s/.*\///") mv $pdb_file $new_pdb_file fi done done - command: archive.targz_pack params: target: "mongo-unittests.tgz" source_dir: "src/unittest_binaries" include: - "./*_test${exe}" - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: mongo-unittests.tgz remote_file: mongodb-mongo-master/${build_variant}/${revision}/unittests/mongo-unittests-${build_id}-${task_name}-${execution}.tgz bucket: mciuploads permissions: public-read content_type: ${content_type|application/x-gzip} display_name: Unit tests - Execution ${execution} optional: true # Gather and archive hang_analyzer debugger files. - command: archive.targz_pack params: target: "src/mongo-hanganalyzer.tgz" source_dir: "src" include: - "./debugger*.*" - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: src/mongo-hanganalyzer.tgz remote_file: mongodb-mongo-master/${build_variant}/${revision}/hanganalyzer/mongo-hanganalyzer-${build_id}-${task_name}-${execution}.tgz bucket: mciuploads permissions: public-read content_type: ${content_type|application/x-gzip} display_name: Hang Analyzer Output - Execution ${execution} optional: true # Gather and archive disk statistics. - command: archive.targz_pack params: target: "diskstats.tgz" source_dir: "./" include: - "./mongo-diskstats*" - "./mongo-diskstats*.csv" - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: diskstats.tgz remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/diskstats/mongo-diskstats-${task_id}-${execution}.tgz bucket: mciuploads permissions: public-read content_type: ${content_type|application/x-gzip} display_name: Disk Stats - Execution ${execution} optional: true # Cleanup steps. - command: shell.exec params: working_dir: src script: | # removes files from the (local) scons cache when it's over a # threshold, to the $prune_ratio percentage. Ideally override # these default values in the distro config in evergreen. if [ -d "${scons_cache_path}" ]; then ${python|/opt/mongodbtoolchain/v2/bin/python2} buildscripts/scons_cache_prune.py --cache-dir '${scons_cache_path}' --cache-size ${scons_cache_size|200} --prune-ratio ${scons_prune_ratio|0.8} fi - func: "cleanup environment" timeout: - func: "fetch debugsymbols archive" - func: "extract debugsymbols" - command: shell.exec params: working_dir: src script: | set -o verbose hang_analyzer_option="-o file -o stdout -p ${hang_analyzer_processes|dbtest,java,mongo,mongod,mongos,python,_test} -g bsondump,mongodump,mongoexport,mongofiles,mongoimport,mongooplog,mongoreplay,mongorestore,mongostat,mongotop" if [ ${hang_analyzer_dump_core|true} = true ]; then hang_analyzer_option="-c $hang_analyzer_option" fi echo "Calling the hang analyzer: PATH=\"/opt/mongodbtoolchain/gdb/bin:$PATH\" ${python|/opt/mongodbtoolchain/v2/bin/python2} buildscripts/hang_analyzer.py $hang_analyzer_option" PATH="/opt/mongodbtoolchain/gdb/bin:$PATH" ${python|/opt/mongodbtoolchain/v2/bin/python2} buildscripts/hang_analyzer.py $hang_analyzer_option ####################################### # Tasks # ####################################### tasks: ## compile - build all scons targets except unittests ## - name: compile depends_on: [] commands: - command: manifest.load - *git_get_project - command: git.apply_patch params: directory: src - func: "get buildnumber" - func: "set up credentials" - func: "build new tools" # noop if ${newtools} is not "true" - command: shell.exec params: working_dir: src script: | set -o errexit set -o verbose # We get the raw version string (r1.2.3-45-gabcdef) from git MONGO_VERSION=$(git describe) # If this is a patch build, we add the patch version id to the version string so we know # this build was a patch, and which evergreen task it came from if [ "${is_patch|}" = "true" ]; then MONGO_VERSION="$MONGO_VERSION-patch-${version_id}" fi # This script converts the generated version string into a sanitized version string for # use by scons and uploading artifacts as well as information about for the scons cache. echo $MONGO_VERSION | SCONS_CACHE_MODE=${scons_cache_mode|nolinked} USE_SCONS_CACHE=${use_scons_cache|false} ${python|/opt/mongodbtoolchain/v2/bin/python2} buildscripts/generate_compile_expansions.py | tee compile_expansions.yml # Then we load the generated version data into the agent so we can use it in task definitions - *apply_compile_expansions - command: shell.exec type: test params: working_dir: src script: | set -o errexit set -o verbose rm -rf ${install_directory|/data/mongo-install-directory} ${python|/opt/mongodbtoolchain/v2/bin/python2} ./buildscripts/scons.py ${compile_flags|} ${scons_cache_args|} --use-new-tools --build-mongoreplay="${build_mongoreplay}" core tools dbtest integration_tests dist dist-debugsymbols distsrc-${ext|tgz} ${msi_target|} MONGO_VERSION=${version} mv mongodb-src-*.${ext|tgz} distsrc.${ext|tgz} mv mongodb-*-debugsymbols.${ext|tgz} mongo-debugsymbols.tgz || true mv mongodb-*.${ext|tgz} mongodb-binaries.tgz # If strip is on the path (everywhere except windows) then we should strip the test binaries # before tarring them up if [ -x ${strip_path|/usr/bin/strip} ]; then cat build/integration_tests.txt | xargs ${strip_command|/usr/bin/strip} ${strip_command|/usr/bin/strip} dbtest ${strip_command|/usr/bin/strip} mongobridge fi - command: shell.exec params: working_dir: src script: | set -o errexit set -o verbose if [ "${has_packages|}" = "true" ] ; then cd buildscripts ${python|/opt/mongodbtoolchain/v2/bin/python2} ${packager_script} --prefix `pwd`/.. --distros ${packager_distro} --tarball `pwd`/../mongodb-binaries.tgz -s ${version} -m HEAD -a ${packager_arch} cd .. fi # Create separate shell archive mkdir -p shell-archive/build cd shell-archive ${platform_decompress|tar xzvf} ../mongodb-binaries.tgz find . -mindepth 3 ! -name "mongo${exe}" -type f -exec rm {} \; # delete bin/* except bin/mongo ${python|/opt/mongodbtoolchain/v2/bin/python2} ../buildscripts/make_archive.py -o mongodb-shell.${ext|tgz} $(find mongodb-* -type f) cd .. - command: archive.targz_pack params: target: "artifacts.tgz" source_dir: "src" include: - "src/mongo/db/modules/enterprise/jstests/**" - "compile_expansions.yml" - "src/mongo/db/modules/subscription/jstests/**" - "src/mongo/db/modules/enterprise/docs/**" - "*.exe" - "jstests/**" - "./test*" - "./dbtest*" - "./mongobridge*" - "buildscripts/**" - "*Example" - "*Test" - "./**.pdb" - "./**.msi" - "./etc/*san.suppressions" - "./etc/repo_config.yaml" - "./build/integration_tests/**" - "./build/integration_tests.txt" - "./build/**.gcno" - "repo/**" - "src/mongo/util/options_parser/test_config_files/**" exclude_files: - "*_test.pdb" - command: archive.targz_pack params: target: "packages.tgz" source_dir: "src" include: - "repo/**" - "./**.msi" - command: s3.put params: optional: true aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: packages.tgz remote_file: ${project}/${build_variant}/${revision}/artifacts/${build_id}-packages.tgz bucket: mciuploads permissions: public-read content_type: application/tar display_name: Packages - func: "upload debugsymbols" - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: src/mongodb-binaries.tgz remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/binaries/mongo-${build_id}.${ext|tgz} bucket: mciuploads permissions: public-read content_type: ${content_type|application/x-gzip} display_name: Binaries - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: src/shell-archive/mongodb-shell.${ext|tgz} remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/binaries/mongo-shell-${build_id}.${ext|tgz} bucket: mciuploads permissions: public-read content_type: ${content_type|application/x-gzip} display_name: Shell - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: artifacts.tgz remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/artifacts/${build_id}.tgz bucket: mciuploads permissions: public-read content_type: application/tar display_name: Artifacts - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} local_file: src/distsrc.${ext|tgz} remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/sources/mongo-src-${build_id}.${ext|tgz} bucket: mciuploads permissions: public-read content_type: ${content_type|application/x-gzip} display_name: Source tarball # We only need to upload the source tarball from one of the build variants # because it should be the same everywhere, so just use linux-64/windows-64-2k8. build_variants: [ linux-64, windows-64-2k8 ] ## compile_all - build all scons targets including unittests ## - name: compile_all depends_on: - name: compile commands: - command: manifest.load - *git_get_project - command: git.apply_patch params: directory: src - func: "get buildnumber" - func: "set up credentials" - func: "build new tools" # noop if ${newtools} is not "true" - *generate_compile_expansions # Then we load the generated version data into the agent so we can use it in task definitions. - *apply_compile_expansions - command: shell.exec type: test params: working_dir: src script: | set -o errexit set -o verbose rm -rf ${install_directory|/data/mongo-install-directory} ${python|/opt/mongodbtoolchain/v2/bin/python2} ./buildscripts/scons.py ${compile_flags|} ${scons_cache_args|} --use-new-tools --build-mongoreplay="${build_mongoreplay}" all ${additional_targets|} MONGO_VERSION=${version} # Run the C++ unittests as part of compile_all. The compiled binaries are automatically # installed into the top-level directory by SCons. - func: "run tests" vars: resmoke_args: --suites=unittests run_multiple_jobs: true ## lint ## - name: lint depends_on: [] commands: - command: manifest.load - *git_get_project - command: git.apply_patch params: directory: src - command: shell.exec type: test params: working_dir: src script: | set -o errexit set -o verbose ${python|/opt/mongodbtoolchain/v2/bin/python2} ./buildscripts/scons.py ${compile_flags|} --stack-size=1024 lint - <<: *task_template name: burn_in_tests depends_on: - name: compile commands: - command: git.get_project # The repository is cloned in a directory distinct from src for the modified test detection # because the extraction of the artifacts performed in the 'do setup' causes # 'git diff --name-only' to see all tests as modified on Windows (git 1.9.5). See SERVER-30634. params: directory: burn_in_tests_clonedir revisions: # for each module include revision as : ${_rev} enterprise: ${enterprise_rev} - command: shell.exec - func: "do setup" - command: shell.exec params: working_dir: burn_in_tests_clonedir script: | set -o errexit ${activate_virtualenv} set -o verbose # If this is a scheduled build, we check for changes against the last scheduled commit. if [ "${is_patch}" != "true" ]; then burn_in_args="--checkEvergreen" fi # Copy the dbtest executable from the src dir because burn_in_tests.py calls it to get the # list of dbtest suites. cp ../src/dbtest${exe} . # Capture a list of new and modified tests. $python buildscripts/burn_in_tests.py --branch=${branch_name} --buildVariant=${build_variant} --testListOutfile=jstests/new_tests.json --noExec $burn_in_args # Copy the results to the src dir. cp jstests/new_tests.json ../src/jstests/new_tests.json - func: "do multiversion setup" - func: "run tests" vars: task_path_suffix: /data/multiversion resmoke_wrapper: ${python|/opt/mongodbtoolchain/v2/bin/python2} buildscripts/burn_in_tests.py --testListFile=jstests/new_tests.json resmoke_args: --repeat=2 run_multiple_jobs: true - <<: *run_jepsen_template name: jepsen_register_findAndModify_WT commands: - func: "do setup" - func: "do jepsen setup" - func: "run jepsen test" vars: <<: *jepsen_config_vars jepsen_read_with_find_and_modify: --read-with-find-and-modify jepsen_storage_engine: --storage-engine wiredTiger jepsen_test_name: register - <<: *run_jepsen_template name: jepsen_register_findAndModify_pv0 commands: - func: "do setup" - func: "do jepsen setup" - func: "run jepsen test" vars: <<: *jepsen_config_vars jepsen_protocol_version: --protocol-version 0 jepsen_read_with_find_and_modify: --read-with-find-and-modify jepsen_storage_engine: --storage-engine mmapv1 jepsen_test_name: register - <<: *run_jepsen_template name: jepsen_register_findAndModify_pv0_WT commands: - func: "do setup" - func: "do jepsen setup" - func: "run jepsen test" vars: <<: *jepsen_config_vars jepsen_protocol_version: --protocol-version 0 jepsen_read_with_find_and_modify: --read-with-find-and-modify jepsen_storage_engine: --storage-engine wiredTiger jepsen_test_name: register - <<: *run_jepsen_template name: jepsen_register_linearizableRead commands: - func: "do setup" - func: "do jepsen setup" - func: "run jepsen test" vars: <<: *jepsen_config_vars jepsen_read_concern: --read-concern linearizable jepsen_storage_engine: --storage-engine mmapv1 jepsen_test_name: register # Running Jepsen when using the MMAPv1 storage engine for longer periods of time can lead to # out of memory issues and task timeouts during the analysis phase. jepsen_time_limit: --time-limit 300 - <<: *run_jepsen_template name: jepsen_register_linearizableRead_WT commands: - func: "do setup" - func: "do jepsen setup" - func: "run jepsen test" vars: <<: *jepsen_config_vars jepsen_read_concern: --read-concern linearizable jepsen_storage_engine: --storage-engine wiredTiger jepsen_test_name: register - <<: *run_jepsen_template name: jepsen_set_linearizableRead commands: - func: "do setup" - func: "do jepsen setup" - func: "run jepsen test" vars: <<: *jepsen_config_vars jepsen_read_concern: --read-concern linearizable jepsen_storage_engine: --storage-engine mmapv1 jepsen_test_name: set # Running Jepsen when using the MMAPv1 storage engine for longer periods of time can lead to # out of memory issues and task timeouts during the analysis phase. jepsen_time_limit: --time-limit 300 - <<: *run_jepsen_template name: jepsen_set_linearizableRead_WT commands: - func: "do setup" - func: "do jepsen setup" - func: "run jepsen test" vars: <<: *jepsen_config_vars jepsen_read_concern: --read-concern linearizable jepsen_storage_engine: --storage-engine wiredTiger jepsen_test_name: set ## jstestfuzz mmapv1 ## - <<: *jstestfuzz_template name: jstestfuzz commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" - <<: *run_jstestfuzz_tests vars: <<: *jstestfuzz_config_vars resmoke_args: --suites=jstestfuzz --storageEngine=mmapv1 ## jstestfuzz WT ## - <<: *jstestfuzz_template name: jstestfuzz_WT commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" - <<: *run_jstestfuzz_tests vars: <<: *jstestfuzz_config_vars resmoke_args: --suites=jstestfuzz --storageEngine=wiredTiger ## jstestfuzz concurrent WT ## - <<: *jstestfuzz_template name: jstestfuzz_concurrent_WT commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" vars: jstestfuzz_vars: --numGeneratedFiles 75 - <<: *run_jstestfuzz_tests vars: <<: *jstestfuzz_config_vars resmoke_args: --suites=jstestfuzz --storageEngine=wiredTiger --numClientsPerFixture=10 ## jstestfuzz concurrent replica set WT ## - <<: *jstestfuzz_template name: jstestfuzz_concurrent_replication_WT commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" vars: jstestfuzz_vars: --numGeneratedFiles 75 - <<: *run_jstestfuzz_tests vars: <<: *jstestfuzz_config_vars resmoke_args: --suites=jstestfuzz_replication --storageEngine=wiredTiger --numClientsPerFixture=10 ## jstestfuzz concurrent sharded cluster WT ## - <<: *jstestfuzz_template name: jstestfuzz_concurrent_sharded_WT commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" vars: jstestfuzz_vars: --numGeneratedFiles 75 - <<: *run_jstestfuzz_tests vars: <<: *jstestfuzz_config_vars resmoke_args: --suites=jstestfuzz_sharded --storageEngine=wiredTiger --numClientsPerFixture=10 ## jstestfuzz replica set mmapv1 ## - <<: *jstestfuzz_template name: jstestfuzz_replication commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" - <<: *run_jstestfuzz_tests vars: <<: *jstestfuzz_config_vars resmoke_args: --suites=jstestfuzz_replication --storageEngine=mmapv1 ## jstestfuzz replica set WT ## - <<: *jstestfuzz_template name: jstestfuzz_replication_WT commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" - <<: *run_jstestfuzz_tests vars: <<: *jstestfuzz_config_vars resmoke_args: --suites=jstestfuzz_replication --storageEngine=wiredTiger ## jstestfuzz initial sync replica set mmapv1 ## - <<: *jstestfuzz_template name: jstestfuzz_replication_initsync commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" vars: jstestfuzz_vars: --numGeneratedFiles 75 - <<: *run_jstestfuzz_tests vars: <<: *jstestfuzz_config_vars resmoke_args: --suites=jstestfuzz_replication_initsync --storageEngine=mmapv1 ## jstestfuzz initial sync replica set WT ## - <<: *jstestfuzz_template name: jstestfuzz_replication_initsync_WT commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" vars: jstestfuzz_vars: --numGeneratedFiles 75 - <<: *run_jstestfuzz_tests vars: <<: *jstestfuzz_config_vars resmoke_args: --suites=jstestfuzz_replication_initsync --storageEngine=wiredTiger ## jstestfuzz initial sync replica set mmapv1 ## - <<: *jstestfuzz_template name: jstestfuzz_replication_resync commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" vars: jstestfuzz_vars: --numGeneratedFiles 75 - <<: *run_jstestfuzz_tests vars: <<: *jstestfuzz_config_vars resmoke_args: --suites=jstestfuzz_replication_resync --storageEngine=mmapv1 ## jstestfuzz initial sync replica set WT ## - <<: *jstestfuzz_template name: jstestfuzz_replication_resync_WT commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" vars: jstestfuzz_vars: --numGeneratedFiles 75 - <<: *run_jstestfuzz_tests vars: <<: *jstestfuzz_config_vars resmoke_args: --suites=jstestfuzz_replication_resync --storageEngine=wiredTiger ## jstestfuzz sharded cluster mmapv1 ## - <<: *jstestfuzz_template name: jstestfuzz_sharded commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" - <<: *run_jstestfuzz_tests vars: <<: *jstestfuzz_config_vars resmoke_args: --suites=jstestfuzz_sharded --storageEngine=mmapv1 ## jstestfuzz sharded cluster WT ## - <<: *jstestfuzz_template name: jstestfuzz_sharded_WT commands: - func: "do setup" - func: "setup jstestfuzz" - func: "run jstestfuzz" - <<: *run_jstestfuzz_tests vars: <<: *jstestfuzz_config_vars resmoke_args: --suites=jstestfuzz_sharded --storageEngine=wiredTiger # Check that the mutational fuzzer can parse JS files modified in a patch build. - name: lint_fuzzer_sanity_patch patch_only: true commands: - command: manifest.load - *git_get_project - func: "get added and modified patch files" - func: "setup jstestfuzz" - func: "lint fuzzer sanity patch" # Check that the mutational fuzzer can parse all JS filess. - name: lint_fuzzer_sanity_all commands: - command: manifest.load - *git_get_project - func: "setup jstestfuzz" - func: "lint fuzzer sanity all" ## integration test suites ## - <<: *task_template name: aggregation commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=aggregation --storageEngine=mmapv1 --excludeWithAnyTags=requires_wiredtiger run_multiple_jobs: true task_excluded_tags: requires_wiredtiger - <<: *task_template name: aggregation_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=aggregation --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: aggregation_WT_ese depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=aggregation_ese --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: aggregation_auth depends_on: - name: aggregation_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=aggregation_auth run_multiple_jobs: true - <<: *task_template name: aggregation_facet_unwind_passthrough_WT depends_on: - name: aggregation_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=aggregation_facet_unwind_passthrough --storageEngine=wiredTiger --excludeWithAnyTags=do_not_wrap_aggregations_in_facets run_multiple_jobs: true task_excluded_tags: do_not_wrap_aggregations_in_facets - <<: *task_template name: aggregation_read_concern_majority_passthrough_WT depends_on: - name: aggregation_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=aggregation_read_concern_majority_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: aggregation_sharded_collections_passthrough_WT depends_on: - name: aggregation_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=aggregation_sharded_collections_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: audit commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=audit --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: audit_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=audit --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: auth commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=auth --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: auth_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=auth --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: auth_audit commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=auth_audit --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: auth_audit_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=auth_audit --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: dbtest commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=dbtest --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: dbtest_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=dbtest --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: disk commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=disk run_multiple_jobs: true - <<: *task_template name: durability commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=durability run_multiple_jobs: true - <<: *task_template name: dur_jscore_passthrough depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=dur_jscore_passthrough run_multiple_jobs: true - <<: *task_template name: ese_WT commands: - func: "do setup" - command: shell.exec type: test params: working_dir: src script: | set -o errexit set -o verbose ${activate_virtualenv} # we should go back to using pip when it works on SLES easy_install --upgrade `cat src/mongo/db/modules/enterprise/jstests/encryptdb/libs/requirements.txt` - func: "run tests" vars: resmoke_args: --suites=ese --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: failpoints commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=failpoints run_multiple_jobs: true - <<: *task_template name: failpoints_auth commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=failpoints_auth run_multiple_jobs: true - <<: *task_template name: gle_auth commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=gle_auth --shellWriteMode=legacy --shellReadMode=legacy --storageEngine=mmapv1 --excludeWithAnyTags=requires_find_command run_multiple_jobs: true task_excluded_tags: requires_find_command - <<: *task_template name: gle_auth_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=gle_auth --shellWriteMode=legacy --shellReadMode=legacy --storageEngine=wiredTiger --excludeWithAnyTags=requires_find_command run_multiple_jobs: true task_excluded_tags: requires_find_command - <<: *task_template name: gle_auth_write_cmd commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=gle_auth --shellWriteMode=commands --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: gle_auth_write_cmd_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=gle_auth --shellWriteMode=commands --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: gle_auth_basics_passthrough commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=gle_auth_basics_passthrough --shellWriteMode=legacy --shellReadMode=legacy --storageEngine=mmapv1 --excludeWithAnyTags=requires_find_command run_multiple_jobs: true task_excluded_tags: requires_find_command - <<: *task_template name: gle_auth_basics_passthrough_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=gle_auth_basics_passthrough --shellWriteMode=legacy --shellReadMode=legacy --storageEngine=wiredTiger --excludeWithAnyTags=requires_find_command run_multiple_jobs: true task_excluded_tags: requires_find_command - <<: *task_template name: gle_auth_basics_passthrough_write_cmd commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=gle_auth_basics_passthrough --shellWriteMode=commands --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: gle_auth_basics_passthrough_write_cmd_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=gle_auth_basics_passthrough --shellWriteMode=commands --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: httpinterface commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=httpinterface - <<: *task_template name: integration_tests_standalone commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=integration_tests_standalone run_multiple_jobs: true - <<: *task_template name: integration_tests_replset commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=integration_tests_replset run_multiple_jobs: true - <<: *task_template name: integration_tests_sharded commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=integration_tests_sharded run_multiple_jobs: true - <<: *task_template name: external_auth_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=external_auth --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: sharding_gle_auth_basics_passthrough depends_on: - name: gle_auth_basics_passthrough commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding_gle_auth_basics_passthrough --shellWriteMode=legacy --shellReadMode=legacy --storageEngine=mmapv1 --excludeWithAnyTags=requires_find_command run_multiple_jobs: true task_excluded_tags: requires_find_command - <<: *task_template name: sharding_gle_auth_basics_passthrough_WT depends_on: - name: gle_auth_basics_passthrough_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding_gle_auth_basics_passthrough --shellWriteMode=legacy --shellReadMode=legacy --storageEngine=wiredTiger --excludeWithAnyTags=requires_find_command run_multiple_jobs: true task_excluded_tags: requires_find_command - <<: *task_template name: sharding_gle_auth_basics_passthrough_write_cmd depends_on: - name: gle_auth_basics_passthrough_write_cmd commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding_gle_auth_basics_passthrough --shellWriteMode=commands --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: sharding_gle_auth_basics_passthrough_write_cmd_WT depends_on: - name: gle_auth_basics_passthrough_write_cmd_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding_gle_auth_basics_passthrough --shellWriteMode=commands --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=core --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: jsCore_inMem commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=core --storageEngine=inMemory run_multiple_jobs: true - <<: *task_template name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=core --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: jsCore_WT_ese depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=core_ese --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: jsCore_compatibility depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=core --shellReadMode=legacy --shellWriteMode=compatibility --storageEngine=mmapv1 --excludeWithAnyTags=requires_find_command run_multiple_jobs: true task_excluded_tags: requires_find_command - <<: *task_template name: jsCore_compatibility_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=core --shellReadMode=legacy --shellWriteMode=compatibility --storageEngine=wiredTiger --excludeWithAnyTags=requires_find_command run_multiple_jobs: true task_excluded_tags: requires_find_command - <<: *task_template name: jsCore_compression depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=core_compression run_multiple_jobs: true - <<: *task_template name: jsCore_auth depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=core_auth run_multiple_jobs: true - <<: *task_template name: jsCore_minimum_batch_size_WT depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=core_minimum_batch_size --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: jsCore_op_query depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=core_op_query --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: jsCore_op_query_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=core_op_query --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: master_slave_jscore_passthrough depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=master_slave_jscore_passthrough --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: master_slave_jscore_passthrough_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=master_slave_jscore_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: replica_sets_jscore_passthrough depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_jscore_passthrough --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: replica_sets_jscore_passthrough_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_jscore_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: replica_sets_initsync_jscore_passthrough depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_initsync_jscore_passthrough --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: replica_sets_initsync_jscore_passthrough_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_initsync_jscore_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: replica_sets_resync_jscore_passthrough depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_resync_jscore_passthrough --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: replica_sets_resync_jscore_passthrough_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_resync_jscore_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: replica_sets_initsync_static_jscore_passthrough depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_initsync_static_jscore_passthrough --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: replica_sets_initsync_static_jscore_passthrough_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_initsync_static_jscore_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: replica_sets_resync_static_jscore_passthrough depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_resync_static_jscore_passthrough --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: replica_sets_resync_static_jscore_passthrough_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_resync_static_jscore_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: replica_sets_kill_secondaries_jscore_passthrough_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_kill_secondaries_jscore_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: mongosTest commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=mongos_test run_multiple_jobs: true - <<: *task_template name: mmap commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=mmap run_multiple_jobs: true - <<: *task_template name: multiversion commands: - func: "do setup" - func: "do multiversion setup" - func: "run tests" vars: task_path_suffix: /data/multiversion resmoke_args: --suites=multiversion --storageEngine=mmapv1 run_multiple_jobs: true task_excluded_tags: requires_wiredtiger - <<: *task_template name: multiversion_auth commands: - func: "do setup" - func: "do multiversion setup" - func: "run tests" vars: task_path_suffix: /data/multiversion resmoke_args: --suites=multiversion_auth --storageEngine=mmapv1 --excludeWithAnyTags=requires_wiredtiger run_multiple_jobs: true - <<: *task_template name: multiversion_WT commands: - func: "do setup" - func: "do multiversion setup" - func: "run tests" vars: task_path_suffix: /data/multiversion resmoke_args: --suites=multiversion --storageEngine=wiredTiger run_multiple_jobs: true task_excluded_tags: requires_mmapv1 - <<: *task_template name: multiversion_multistorage_engine commands: - func: "do setup" - func: "do multiversion setup" - func: "run tests" vars: task_path_suffix: /data/multiversion resmoke_args: --suites=multiversion_multistorage_engine run_multiple_jobs: true - <<: *task_template name: noPassthrough commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=no_passthrough --storageEngine=mmapv1 --excludeWithAnyTags=requires_document_locking run_multiple_jobs: true - <<: *task_template name: noPassthrough_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=no_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: noPassthroughWithMongod commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=no_passthrough_with_mongod --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: noPassthroughWithMongod_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=no_passthrough_with_mongod --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: bulk_gle_passthrough commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=bulk_gle_passthrough --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: bulk_gle_passthrough_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=bulk_gle_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: slow1 commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=slow1 --storageEngine=mmapv1 run_multiple_jobs: false - <<: *task_template name: slow1_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=slow1 --storageEngine=wiredTiger run_multiple_jobs: false - <<: *task_template name: serial_run commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=serial_run --storageEngine=mmapv1 run_multiple_jobs: false - <<: *task_template name: serial_run_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=serial_run --storageEngine=wiredTiger run_multiple_jobs: false - <<: *task_template name: sharded_collections_jscore_passthrough depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharded_collections_jscore_passthrough --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: sharded_collections_jscore_passthrough_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharded_collections_jscore_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: sharding_jscore_passthrough depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding_jscore_passthrough --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: sharding_jscore_passthrough_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding_jscore_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: sharding_jscore_passthrough_wire_ops_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding_jscore_passthrough --storageEngine=wiredTiger --shellReadMode=legacy --shellWriteMode=compatibility --excludeWithAnyTags=requires_find_command run_multiple_jobs: true task_excluded_tags: requires_find_command - <<: *task_template name: parallel depends_on: - name: jsCore commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=parallel --storageEngine=mmapv1 - <<: *task_template name: parallel_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=parallel --storageEngine=wiredTiger - <<: *task_template name: parallel_compatibility depends_on: - name: jsCore_compatibility commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=parallel --shellReadMode=legacy --shellWriteMode=compatibility --storageEngine=mmapv1 task_excluded_tags: requires_find_command - <<: *task_template name: parallel_compatibility_WT depends_on: - name: jsCore_compatibility_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=parallel --shellReadMode=legacy --shellWriteMode=compatibility --storageEngine=wiredTiger task_excluded_tags: requires_find_command - <<: *task_template name: concurrency commands: - func: "do setup" - func: "run tests" timeout_secs: 21600 # 6 hour timeout vars: resmoke_args: --suites=concurrency --storageEngine=mmapv1 - <<: *task_template name: concurrency_WT commands: - func: "do setup" - func: "run tests" timeout_secs: 21600 # 6 hour timeout vars: resmoke_args: --suites=concurrency --storageEngine=wiredTiger - <<: *task_template name: concurrency_replication commands: - func: "do setup" - func: "run tests" timeout_secs: 21600 # 6 hour timeout vars: resmoke_args: --suites=concurrency_replication --storageEngine=mmapv1 - <<: *task_template name: concurrency_replication_WT commands: - func: "do setup" - func: "run tests" timeout_secs: 21600 # 6 hour timeout vars: resmoke_args: --suites=concurrency_replication --storageEngine=wiredTiger - <<: *task_template name: concurrency_sharded exec_timeout_secs: 43200 # 12 hour timeout for the task overall commands: - func: "do setup" - func: "run tests" timeout_secs: 21600 # 6 hour timeout for each test vars: resmoke_args: --suites=concurrency_sharded --storageEngine=mmapv1 - <<: *task_template name: concurrency_sharded_WT exec_timeout_secs: 43200 # 12 hour timeout for the task overall commands: - func: "do setup" - func: "run tests" timeout_secs: 21600 # 6 hour timeout for each test vars: resmoke_args: --suites=concurrency_sharded --storageEngine=wiredTiger - <<: *task_template name: concurrency_simultaneous commands: - func: "do setup" - func: "run tests" timeout_secs: 21600 # 6 hour timeout vars: resmoke_args: --executor=concurrency jstests/concurrency/fsm_all_simultaneous.js --storageEngine=mmapv1 - <<: *task_template name: concurrency_simultaneous_WT commands: - func: "do setup" - func: "run tests" timeout_secs: 21600 # 6 hour timeout vars: resmoke_args: --executor=concurrency jstests/concurrency/fsm_all_simultaneous.js --storageEngine=wiredTiger - <<: *task_template name: rlp commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=rlp --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: rlp_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=rlp --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: read_concern_majority_passthrough_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=read_concern_majority_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: write_concern_majority_passthrough_WT depends_on: - name: jsCore_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=write_concern_majority_passthrough --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: replica_sets commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: replica_sets_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: replica_sets_WT_ese commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_ese --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: replica_sets_auth commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_auth run_multiple_jobs: true - <<: *task_template name: replica_sets_compression commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_compression run_multiple_jobs: true - <<: *task_template name: replica_sets_pv0 commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=replica_sets_pv0 run_multiple_jobs: true - <<: *task_template name: master_slave commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=master_slave --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: master_slave_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=master_slave --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: master_slave_auth depends_on: - name: master_slave_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=master_slave_auth run_multiple_jobs: true - <<: *task_template name: sasl commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sasl run_multiple_jobs: true - <<: *task_template name: sharding commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: sharding_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: sharding_compression commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding_compression run_multiple_jobs: true - <<: *task_template name: sharding_csrs_continuous_config_stepdown_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding_continuous_config_stepdown --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: sharding_WT_ese commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding_ese --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: sharding_op_query_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding --shellReadMode=legacy --storageEngine=wiredTiger --excludeWithAnyTags=requires_find_command run_multiple_jobs: true task_excluded_tags: requires_find_command - <<: *task_template name: sharding_auth commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding_auth run_multiple_jobs: true - <<: *task_template name: sharding_auth_audit_WT depends_on: - name: sharding_auth commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=sharding_auth_audit --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: sharding_last_stable_mongos_and_mixed_shards commands: - func: "do setup" - func: "do multiversion setup" - func: "run tests" vars: task_path_suffix: /data/multiversion resmoke_args: --suites=sharding_last_stable_mongos_and_mixed_shards run_multiple_jobs: true - <<: *task_template name: snmp commands: - func: "do setup" - command: shell.exec type: test params: working_dir: src script: | set -o errexit set -o verbose cp mongodb*/bin/* . mkdir -p snmpconf cp -f src/mongo/db/modules/enterprise/docs/mongod.conf.master snmpconf/mongod.conf SNMPCONFPATH=snmpconf ${san_symbolizer} ${san_options} ${python|/opt/mongodbtoolchain/v2/bin/python2} buildscripts/resmoke.py --suites=snmp --jobs ${num_jobs_available|1} --shuffle --storageEngine=mmapv1 ${test_flags} --log=buildlogger --reportFile=report.json - <<: *task_template name: snmp_WT commands: - func: "do setup" - command: shell.exec type: test params: working_dir: src script: | set -o errexit set -o verbose cp mongodb*/bin/* . mkdir -p snmpconf cp -f src/mongo/db/modules/enterprise/docs/mongod.conf.master snmpconf/mongod.conf SNMPCONFPATH=snmpconf ${san_symbolizer} ${san_options} ${python|/opt/mongodbtoolchain/v2/bin/python2} buildscripts/resmoke.py --suites=snmp --jobs ${num_jobs_available|1} --shuffle --storageEngine=wiredTiger ${test_flags} --log=buildlogger --reportFile=report.json - <<: *task_template name: ssl commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=ssl run_multiple_jobs: true - <<: *task_template name: sslSpecial commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=ssl_special run_multiple_jobs: true - <<: *task_template name: tool commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=tool --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: tool_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=tool --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: jsCore_decimal commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=decimal --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: jsCore_decimal_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=decimal --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: read_only commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=read_only --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: read_only_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=read_only --storageEngine=wiredTiger run_multiple_jobs: true - <<: *task_template name: read_only_sharded commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=read_only_sharded --storageEngine=mmapv1 run_multiple_jobs: true - <<: *task_template name: read_only_sharded_WT commands: - func: "do setup" - func: "run tests" vars: resmoke_args: --suites=read_only_sharded --storageEngine=wiredTiger run_multiple_jobs: true - name: package depends_on: - name: compile commands: - func: "fetch artifacts" - func: "set up remote credentials" vars: private_key_file: ~/.ssh/kitchen.pem private_key_remote: ${kitchen_private_key} aws_key_remote: ${kitchen_aws_key} aws_secret_remote: ${kitchen_aws_secret} - func: "run kitchen" - name: push patchable: false depends_on: - name: "*" stepback: false commands: - func: "fetch artifacts" - func: "fetch binaries" - command: s3.get params: aws_key: ${aws_key} aws_secret: ${aws_secret} remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/binaries/mongo-shell-${build_id}.${ext|tgz} bucket: mciuploads local_file: src/mongo-shell.tgz - command: s3.get params: aws_key: ${aws_key} aws_secret: ${aws_secret} remote_file: mongodb-mongo-v3.4/${build_variant}/${revision}/sources/mongo-src-${build_id}.${ext|tgz} bucket: mciuploads local_file: src/distsrc.${ext|tgz} build_variants: [ linux-64, windows-64-2k8 ] - *apply_compile_expansions - func: "fetch debugsymbols archive" - command: shell.exec params: working_dir: src silent: true script: | set -o errexit mkdir -p ~/.aws cat < ~/.aws/config [default] region = us-east-1 EOF cat < ~/.aws/credentials [default] aws_access_key_id = ${repo_aws_key} aws_secret_access_key = ${repo_aws_secret} EOF cat < notary_env.sh export NOTARY_TOKEN=${signing_auth_token_34} export BARQUE_USERNAME=${barque_user} export BARQUE_PASSWORD=${barque_password} EOF echo "${signing_auth_token_34}" > signing_auth_token - command: shell.exec params: working_dir: src script: | . ./notary_env.sh set -o errexit set -o verbose mv mongo-binaries.tgz mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz} mv mongo-shell.tgz mongodb-shell-${push_name}-${push_arch}-${suffix}.${ext|tgz} mv mongo-debugsymbols.tgz mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz} || true mv distsrc.${ext|tgz} mongodb-src-${src_suffix}.${ext|tar.gz} || true /usr/bin/find build/ -type f | grep msi$ | xargs -I original_filename cp original_filename mongodb-win32-${push_arch}-${suffix}.msi || true /usr/local/bin/notary-client.py --key-name "server-3.4" --auth-token-file ${workdir}/src/signing_auth_token --comment "Evergreen Automatic Signing ${revision} - ${build_variant} - ${branch_name}" --notary-url http://notary-service.build.10gen.cc:5000 --skip-missing mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz} mongodb-shell-${push_name}-${push_arch}-${suffix}.${ext|tgz} mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz} mongodb-win32-${push_arch}-${suffix}.msi mongodb-src-${src_suffix}.${ext|tar.gz} if [ "${has_packages|}" = "true" ]; then CURATOR_RELEASE=${curator_release|"latest"} curl -L -O http://boxes.10gen.com/build/curator/curator-dist-rhel70-$CURATOR_RELEASE.tar.gz tar -zxvf curator-dist-rhel70-$CURATOR_RELEASE.tar.gz ./curator repo submit --service ${barque_url} --config ./etc/repo_config.yaml --distro ${packager_distro} --edition ${repo_edition} --version ${version} --arch ${packager_arch} --packages https://s3.amazonaws.com/mciuploads/${project}/${build_variant}/${revision}/artifacts/${build_id}-packages.tgz fi # Put the binaries tarball/zipfile - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz} aws_key: ${aws_key} bucket: build-push-testing permissions: public-read content_type: ${content_type|application/x-gzip} remote_file: ${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz} # Put the shell tarball/zipfile - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-shell-${push_name}-${push_arch}-${suffix}.${ext|tgz} aws_key: ${aws_key} bucket: build-push-testing permissions: public-read content_type: ${content_type|application/x-gzip} remote_file: ${push_path}-STAGE/${push_name}/mongodb-shell-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz} # Put the source tarball - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-src-${src_suffix}.${ext|tar.gz} aws_key: ${aws_key} bucket: build-push-testing permissions: public-read content_type: ${content_type|application/x-gzip} remote_file: ${push_path}-STAGE/${push_name}/mongodb-src-${src_suffix}-${task_id}.${ext|tar.gz} build_variants: [ linux-64, windows-64-2k8 ] # Put the debug symbols - command: s3.put params: aws_secret: ${aws_secret} aws_key: ${aws_key} build_variants: *debug_symbol_variants permissions: public-read local_file: src/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz} bucket: build-push-testing content_type: ${content_type|application/x-gzip} remote_file: ${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}-${task_id}.${ext|tgz} # Put the binaries tarball signature - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz}.sig aws_key: ${aws_key} bucket: build-push-testing permissions: public-read content_type: ${content_type|application/x-gzip} remote_file: ${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.sig # Put the shell tarball signature - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-shell-${push_name}-${push_arch}-${suffix}.${ext|tgz}.sig aws_key: ${aws_key} bucket: build-push-testing permissions: public-read content_type: ${content_type|application/x-gzip} remote_file: ${push_path}-STAGE/${push_name}/mongodb-shell-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.sig # Put the source tarball signature - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-src-${src_suffix}.${ext|tar.gz}.sig aws_key: ${aws_key} bucket: build-push-testing permissions: public-read content_type: ${content_type|application/x-gzip} remote_file: ${push_path}-STAGE/${push_name}/mongodb-src-${src_suffix}-${task_id}.${ext|tar.gz}.sig build_variants: [ linux-64, windows-64-2k8 ] # Put the debug symbols signature - command: s3.put params: aws_secret: ${aws_secret} aws_key: ${aws_key} build_variants: *debug_symbol_variants permissions: public-read local_file: src/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz}.sig bucket: build-push-testing content_type: ${content_type|application/x-gzip} remote_file: ${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}-${task_id}.${ext|tgz}.sig # Put the signed MSI file - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} permissions: public-read build_variants: ["enterprise-windows-64", "windows-64", "windows-64-2k8", "windows-64-2k8-ssl"] local_file: src/mongodb-win32-${push_arch}-${suffix}-signed.msi bucket: build-push-testing content_type: application/x-msi remote_file: ${push_path}-STAGE/${push_name}/mongodb-win32-${push_arch}-${suffix}-${task_id}-signed.msi # Put the binaries tarball sha1 - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz}.sha1 aws_key: ${aws_key} permissions: public-read bucket: build-push-testing content_type: text/plain remote_file: ${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.sha1 # Put the shell tarball sha1 - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-shell-${push_name}-${push_arch}-${suffix}.${ext|tgz}.sha1 aws_key: ${aws_key} permissions: public-read bucket: build-push-testing content_type: text/plain remote_file: ${push_path}-STAGE/${push_name}/mongodb-shell-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.sha1 # Put the source tarball sha1 - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-src-${src_suffix}.${ext|tar.gz}.sha1 aws_key: ${aws_key} permissions: public-read bucket: build-push-testing content_type: text/plain remote_file: ${push_path}-STAGE/${push_name}/mongodb-src-${src_suffix}-${task_id}.${ext|tar.gz}.sha1 build_variants: [ linux-64, windows-64-2k8 ] # Put the debug symbols sha1 - command: s3.put params: aws_secret: ${aws_secret} aws_key: ${aws_key} build_variants: *debug_symbol_variants permissions: public-read local_file: src/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz}.sha1 bucket: build-push-testing content_type: text/plain remote_file: ${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}-${task_id}.${ext|tgz}.sha1 # Push the signed MSI sha1 - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} permissions: public-read build_variants: ["enterprise-windows-64", "windows-64", "windows-64-2k8", "windows-64-2k8-ssl"] local_file: src/mongodb-win32-${push_arch}-${suffix}-signed.msi.sha1 bucket: build-push-testing content_type: text/plain remote_file: ${push_path}-STAGE/${push_name}/mongodb-win32-${push_arch}-${suffix}-${task_id}-signed.msi.sha1 # Put the binaries tarball sha256 - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz}.sha256 permissions: public-read aws_key: ${aws_key} bucket: build-push-testing content_type: text/plain remote_file: ${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.sha256 # Put the shell tarball sha256 - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-shell-${push_name}-${push_arch}-${suffix}.${ext|tgz}.sha256 permissions: public-read aws_key: ${aws_key} bucket: build-push-testing content_type: text/plain remote_file: ${push_path}-STAGE/${push_name}/mongodb-shell-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.sha256 # Put the source tarball sha256 - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-src-${src_suffix}.${ext|tar.gz}.sha256 permissions: public-read aws_key: ${aws_key} bucket: build-push-testing content_type: text/plain remote_file: ${push_path}-STAGE/${push_name}/mongodb-src-${src_suffix}-${task_id}.${ext|tar.gz}.sha256 build_variants: [ linux-64, windows-64-2k8 ] # Put the debug symbols sha256 - command: s3.put params: aws_secret: ${aws_secret} build_variants: *debug_symbol_variants local_file: src/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz}.sha256 aws_key: ${aws_key} bucket: build-push-testing permissions: public-read content_type: text/plain remote_file: ${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}-${task_id}.${ext|tgz}.sha256 # Put the signed MSI sha256 - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} build_variants: ["enterprise-windows-64", "windows-64", "windows-64-2k8", "windows-64-2k8-ssl"] local_file: src/mongodb-win32-${push_arch}-${suffix}-signed.msi.sha256 bucket: build-push-testing permissions: public-read remote_file: ${push_path}-STAGE/${push_name}/mongodb-win32-${push_arch}-${suffix}-${task_id}-signed.msi.sha256 content_type: text/plain # Put the binaries tarball md5 - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz}.md5 aws_key: ${aws_key} bucket: build-push-testing permissions: public-read content_type: text/plain remote_file: ${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.md5 # Put the shell tarball md5 - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-shell-${push_name}-${push_arch}-${suffix}.${ext|tgz}.md5 aws_key: ${aws_key} bucket: build-push-testing permissions: public-read content_type: text/plain remote_file: ${push_path}-STAGE/${push_name}/mongodb-shell-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.md5 # Put the source tarball md5 - command: s3.put params: aws_secret: ${aws_secret} local_file: src/mongodb-src-${src_suffix}.${ext|tar.gz}.md5 aws_key: ${aws_key} bucket: build-push-testing permissions: public-read content_type: text/plain remote_file: ${push_path}-STAGE/${push_name}/mongodb-src-${src_suffix}-${task_id}.${ext|tar.gz}.md5 build_variants: [ linux-64, windows-64-2k8 ] # Put the debug symbols md5 - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} build_variants: *debug_symbol_variants local_file: src/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz}.md5 bucket: build-push-testing content_type: text/plain permissions: public-read remote_file: ${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}-${task_id}.${ext|tgz}.md5 # Put the signed MSI md5 - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} build_variants: ["enterprise-windows-64", "windows-64", "windows-64-2k8", "windows-64-2k8-ssl"] local_file: src/mongodb-win32-${push_arch}-${suffix}-signed.msi.md5 bucket: build-push-testing permissions: public-read content_type: text/plain remote_file: ${push_path}-STAGE/${push_name}/mongodb-win32-${push_arch}-${suffix}-${task_id}-signed.msi.md5 - command: s3Copy.copy params: aws_key: ${aws_key} aws_secret: ${aws_secret} s3_copy_files: #Binaries - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz}', 'bucket': '${push_bucket}'}} #Shell - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-shell-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-shell-${push_name}-${push_arch}-${suffix}.${ext|tgz}', 'bucket': '${push_bucket}'}} #Source tarball - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-src-${src_suffix}-${task_id}.${ext|tar.gz}', 'bucket': 'build-push-testing'}, 'destination': {'path': 'src/mongodb-src-${src_suffix}.${ext|tar.gz}', 'bucket': '${push_bucket}'}, 'build_variants': [ 'linux-64', 'windows-64-2k8' ] } #Debug Symbols - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}-${task_id}.${ext|tgz}', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz}', 'bucket': '${push_bucket}'}, 'build_variants': *debug_symbol_variants } #MSI (Windows only) - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-win32-${push_arch}-${suffix}-${task_id}-signed.msi', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-win32-${push_arch}-${suffix}-signed.msi', 'bucket': '${push_bucket}'}, 'build_variants': [ 'enterprise-windows-64', 'windows-64', 'windows-64-2k8', 'windows-64-2k8-ssl' ] } #Binaries Signature - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.sig', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz}.sig', 'bucket': '${push_bucket}'}} #Shell Signature - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-shell-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.sig', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-shell-${push_name}-${push_arch}-${suffix}.${ext|tgz}.sig', 'bucket': '${push_bucket}'}} #Debug Symbols Signature - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}-${task_id}.${ext|tgz}.sig', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz}.sig', 'bucket': '${push_bucket}'}, 'build_variants': *debug_symbol_variants } #Source tarball signature - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-src-${src_suffix}-${task_id}.${ext|tar.gz}.sig', 'bucket': 'build-push-testing'}, 'destination': {'path': 'src/mongodb-src-${src_suffix}.${ext|tar.gz}.sig', 'bucket': '${push_bucket}'}, 'build_variants': [ 'linux-64', 'windows-64-2k8' ] } #SHA1 for binaries - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.sha1', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz}.sha1', 'bucket': '${push_bucket}'}} #SHA1 for shell - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-shell-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.sha1', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-shell-${push_name}-${push_arch}-${suffix}.${ext|tgz}.sha1', 'bucket': '${push_bucket}'}} #SHA1 for source tarball - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-src-${src_suffix}-${task_id}.${ext|tar.gz}.sha1', 'bucket': 'build-push-testing'}, 'destination': {'path': 'src/mongodb-src-${src_suffix}.${ext|tar.gz}.sha1', 'bucket': '${push_bucket}'}, 'build_variants': [ 'linux-64', 'windows-64-2k8' ] } #SHA1 for debug symbols - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}-${task_id}.${ext|tgz}.sha1', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz}.sha1', 'bucket': '${push_bucket}'}, 'build_variants': *debug_symbol_variants } #SHA1 for MSI - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-win32-${push_arch}-${suffix}-${task_id}-signed.msi.sha1', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-win32-${push_arch}-${suffix}-signed.msi.sha1', 'bucket': '${push_bucket}'}, 'build_variants': ['enterprise-windows-64', 'windows-64', 'windows-64-2k8', 'windows-64-2k8-ssl'] } #SHA256 for binaries - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.sha256', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz}.sha256', 'bucket': '${push_bucket}'}} #SHA256 for shell - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-shell-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.sha256', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-shell-${push_name}-${push_arch}-${suffix}.${ext|tgz}.sha256', 'bucket': '${push_bucket}'}} #SHA256 for source tarball - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-src-${src_suffix}-${task_id}.${ext|tar.gz}.sha256', 'bucket': 'build-push-testing'}, 'destination': {'path': 'src/mongodb-src-${src_suffix}.${ext|tar.gz}.sha256', 'bucket': '${push_bucket}'}, 'build_variants': [ 'linux-64', 'windows-64-2k8' ] } #SHA256 for debugsymbols - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}-${task_id}.${ext|tgz}.sha256', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz}.sha256', 'bucket': '${push_bucket}'}, 'build_variants': *debug_symbol_variants} #SHA256 for MSI files - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-win32-${push_arch}-${suffix}-${task_id}-signed.msi.sha256', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-win32-${push_arch}-${suffix}-signed.msi.sha256', 'bucket': '${push_bucket}'}, 'build_variants': ['enterprise-windows-64', 'windows-64', 'windows-64-2k8', 'windows-64-2k8-ssl'], } #MD5 for binaries - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.md5', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz}.md5', 'bucket': '${push_bucket}'}} #MD5 for shell - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-shell-${push_name}-${push_arch}-${suffix}-${task_id}.${ext|tgz}.md5', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-shell-${push_name}-${push_arch}-${suffix}.${ext|tgz}.md5', 'bucket': '${push_bucket}'}} #MD5 for source tarball - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-src-${src_suffix}-${task_id}.${ext|tar.gz}.md5', 'bucket': 'build-push-testing'}, 'destination': {'path': 'src/mongodb-src-${src_suffix}.${ext|tar.gz}.md5', 'bucket': '${push_bucket}'}, 'build_variants': [ 'linux-64', 'windows-64-2k8' ] } #MD5 for debugsymbols - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}-${task_id}.${ext|tgz}.md5', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz}.md5', 'bucket': '${push_bucket}'}, 'build_variants': *debug_symbol_variants } #MD5 for MSIs - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-win32-${push_arch}-${suffix}-${task_id}-signed.msi.md5', 'bucket': 'build-push-testing'}, 'destination': {'path': '${push_path}/mongodb-win32-${push_arch}-${suffix}-signed.msi.md5', 'bucket': '${push_bucket}'}, 'build_variants': ['enterprise-windows-64', 'windows-64', 'windows-64-2k8', 'windows-64-2k8-ssl'], } ####################################### # Modules # ####################################### # if a module is added and to be added to the manifest # be sure to add the module to git.get_project revisions parameter modules: - name: enterprise repo: git@github.com:10gen/mongo-enterprise-modules.git prefix: src/mongo/db/modules branch: v3.4 ####################################### # Buildvariants # ####################################### buildvariants: ########################################### # Linux buildvariants # ########################################### - name: linux-64 display_name: Linux run_on: - rhel62-small batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64 compile_flags: -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy --release num_jobs_available: $(grep -c ^processor /proc/cpuinfo) use_scons_cache: true tooltags: "" build_mongoreplay: true tasks: - name: compile distros: - rhel62-large - name: compile_all distros: - rhel62-large - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: dur_jscore_passthrough - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: httpinterface - name: integration_tests_standalone - name: integration_tests_replset - name: integration_tests_sharded - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_op_query - name: jsCore_op_query_WT - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_decimal - name: jsCore_decimal_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: multiversion - name: multiversion_auth - name: multiversion_WT - name: multiversion_multistorage_engine - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: read_concern_majority_passthrough_WT - name: read_only - name: read_only_WT - name: read_only_sharded - name: read_only_sharded_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_pv0 - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_last_stable_mongos_and_mixed_shards - name: tool - name: tool_WT - name: write_concern_majority_passthrough_WT - name: push distros: - rhel62-small - name: linux-64-repeated-execution stepback: false display_name: ~ Linux Repeated Execution run_on: - rhel62-small batchtime: 1440 # 1 day expansions: compile_flags: -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(grep -c ^processor /proc/cpuinfo) test_flags: --repeat=10 --shuffle use_scons_cache: true tooltags: "" build_mongoreplay: true tasks: - name: compile distros: - rhel62-large - name: compile_all distros: - rhel62-large - name: dbtest - name: dbtest_WT - name: integration_tests_standalone - name: integration_tests_replset - name: integration_tests_sharded - name: jsCore - name: jsCore_WT - name: parallel_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication_WT - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: linux-64-debug display_name: Linux DEBUG run_on: - rhel62-large batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.mongodb.org push_name: linux-debug push_arch: x86_64 num_jobs_available: $(($(grep -c ^processor /proc/cpuinfo) / 2)) # Avoid starting too many mongod's compile_flags: --dbg=on --opt=on -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy use_scons_cache: true tooltags: "" build_mongoreplay: true tasks: - name: compile distros: - rhel62-large - name: compile_all distros: - rhel62-large - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: failpoints_auth - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_decimal - name: jsCore_decimal_WT - name: mmap - name: mongosTest - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: read_concern_majority_passthrough_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_pv0 - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: tool - name: tool_WT - name: write_concern_majority_passthrough_WT - name: linux-64-duroff display_name: Linux (No Journal) run_on: - rhel62-small batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.mongodb.org push_name: linux-duroff push_arch: x86_64 compile_flags: -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(grep -c ^processor /proc/cpuinfo) test_flags: --nojournal variant_excluded_flags: requires_journaling use_scons_cache: true tooltags: "" build_mongoreplay: true tasks: - name: compile distros: - rhel62-large - name: compile_all distros: - rhel62-large - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: dbtest - name: disk - name: durability - name: dur_jscore_passthrough - name: failpoints - name: failpoints_auth - name: jsCore - name: jsCore_auth - name: jsCore_compatibility - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: noPassthrough - name: noPassthroughWithMongod - name: bulk_gle_passthrough - name: parallel - name: parallel_compatibility - name: concurrency - name: concurrency_replication - name: concurrency_sharded - name: concurrency_simultaneous - name: replica_sets - name: replica_sets_auth - name: replica_sets_jscore_passthrough - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: sharding - name: sharding_auth - name: slow1 - name: serial_run - name: sharding_jscore_passthrough - name: tool - name: ubuntu1604 display_name: SSL Ubuntu 16.04 run_on: - ubuntu1604-test batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-ubuntu1604 lang_environment: LANG=C compile_flags: --ssl MONGO_DISTMOD=ubuntu1604 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy multiversion_platform_arch: "ubuntu1604" multiversion_edition: "targeted" num_jobs_available: $(grep -c ^processor /proc/cpuinfo) has_packages: true packager_script: packager.py packager_arch: x86_64 packager_distro: ubuntu1604 repo_edition: org use_scons_cache: true tooltags: "ssl" build_mongoreplay: true tasks: - name: compile distros: - ubuntu1604-build - name: compile_all distros: - ubuntu1604-build - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: dur_jscore_passthrough - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: jepsen_register_findAndModify_WT distros: - ubuntu1604-build - name: jepsen_register_findAndModify_pv0 distros: - ubuntu1604-build - name: jepsen_register_findAndModify_pv0_WT distros: - ubuntu1604-build - name: jepsen_register_linearizableRead distros: - ubuntu1604-build - name: jepsen_register_linearizableRead_WT distros: - ubuntu1604-build - name: jepsen_set_linearizableRead distros: - ubuntu1604-build - name: jepsen_set_linearizableRead_WT distros: - ubuntu1604-build - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_decimal - name: jsCore_decimal_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: multiversion - name: multiversion_WT - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: sharding_auth - name: sharding_last_stable_mongos_and_mixed_shards - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: package distros: - ubuntu1604-packer - name: push distros: - ubuntu1604-test - name: ubuntu1404 display_name: SSL Ubuntu 14.04 run_on: - ubuntu1404-test batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-ubuntu1404 lang_environment: LANG=C compile_flags: --ssl MONGO_DISTMOD=ubuntu1404 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy multiversion_platform_arch: "ubuntu1404" multiversion_edition: "targeted" num_jobs_available: $(grep -c ^processor /proc/cpuinfo) has_packages: true packager_script: packager.py packager_arch: x86_64 packager_distro: ubuntu1404 repo_edition: org use_scons_cache: true tooltags: "ssl" build_mongoreplay: true tasks: - name: compile distros: - ubuntu1404-build - name: compile_all distros: - ubuntu1404-build - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: dur_jscore_passthrough - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_decimal - name: jsCore_decimal_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: multiversion - name: multiversion_WT - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: sharding_auth - name: sharding_last_stable_mongos_and_mixed_shards - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: package distros: - ubuntu1604-packer - name: push distros: - ubuntu1604-test - name: enterprise-ubuntu1404-64 display_name: Enterprise Ubuntu 14.04 modules: - enterprise run_on: - ubuntu1404-test batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.10gen.com push_name: linux lang_environment: LANG=C push_arch: x86_64-enterprise-ubuntu1404 compile_flags: --ssl MONGO_DISTMOD=ubuntu1404 --release -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(grep -c ^processor /proc/cpuinfo) has_packages: true packager_script: packager-enterprise.py packager_arch: x86_64 packager_distro: ubuntu1404 repo_edition: enterprise use_scons_cache: true tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - ubuntu1404-build - name: compile_all distros: - ubuntu1404-build - name: audit - name: audit_WT - name: dbtest - name: dbtest_WT - name: ese_WT - name: jsCore - name: jsCore_auth - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: replica_sets_auth - name: sasl - name: sharding_auth - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: package distros: - ubuntu1604-packer - name: push distros: - ubuntu1604-test - name: enterprise-ubuntu1604-arm64 display_name: Enterprise Ubuntu 16.04 arm64 modules: - enterprise run_on: - ubuntu1604-arm64-large batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: arm64-enterprise-ubuntu1604 compile_flags: --ssl MONGO_DISTMOD=ubuntu1604 -j$(grep -c ^processor /proc/cpuinfo) CCFLAGS="-march=armv8-a+crc -mtune=generic" --release CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(grep -c ^processor /proc/cpuinfo) max_jobs: 8 # Avoid starting too many mongod's on ARM test servers variant_excluded_flags: requires_mmapv1 has_packages: true packager_script: packager-enterprise.py packager_arch: arm64 packager_distro: ubuntu1604 repo_edition: enterprise tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - ubuntu1604-arm64-large - name: compile_all distros: - ubuntu1604-arm64-large - name: aggregation_WT - name: aggregation_auth - name: auth_WT - name: dbtest_WT - name: failpoints - name: failpoints_auth - name: gle_auth_WT - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd_WT - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: jsCore_WT - name: jsCore_compatibility_WT - name: jsCore_decimal_WT - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded_WT - name: mongosTest - name: noPassthrough_WT - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough_WT - name: parallel_WT - name: parallel_compatibility_WT - name: concurrency_WT - name: concurrency_replication_WT - name: concurrency_sharded_WT - name: concurrency_simultaneous_WT - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_jscore_passthrough_WT - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough_WT - name: sharding_WT - name: sharding_auth - name: slow1_WT - name: serial_run_WT - name: sharding_jscore_passthrough_WT - name: ssl - name: sslSpecial - name: tool_WT - name: push distros: - ubuntu1604-test - name: ubuntu1604-arm64 display_name: SSL Ubuntu 16.04 arm64 run_on: - ubuntu1604-arm64-small batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: arm64-ubuntu1604 compile_flags: --ssl MONGO_DISTMOD=ubuntu1604 -j$(grep -c ^processor /proc/cpuinfo) --release CCFLAGS="-march=armv8-a+crc -mtune=generic" CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(grep -c ^processor /proc/cpuinfo) max_jobs: 8 # Avoid starting too many mongod's on ARM test servers variant_excluded_flags: requires_mmapv1 has_packages: true packager_script: packager.py packager_arch: arm64 packager_distro: ubuntu1604 repo_edition: org tooltags: "ssl" build_mongoreplay: true tasks: - name: compile distros: - ubuntu1604-arm64-large - name: compile_all distros: - ubuntu1604-arm64-large - name: dbtest_WT - name: jsCore_WT - name: push distros: - ubuntu1604-test - name: enterprise-ubuntu1604-s390x display_name: Enterprise Ubuntu 16.04 s390x modules: - enterprise run_on: - ubuntu1604-zseries-small batchtime: 1440 # 1 day stepback: false expansions: push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: s390x-enterprise-ubuntu1604 compile_flags: --ssl MONGO_DISTMOD=ubuntu1604 --release -j3 CCFLAGS="-march=z196 -mtune=zEC12" CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: 2 variant_excluded_flags: requires_mmapv1 has_packages: true packager_script: packager-enterprise.py packager_arch: s390x packager_distro: ubuntu1604 repo_edition: enterprise tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - ubuntu1604-zseries-large - name: compile_all distros: - ubuntu1604-zseries-large - name: aggregation_WT - name: aggregation_WT_ese - name: aggregation_auth - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: audit_WT - name: auth_WT - name: auth_audit_WT - name: bulk_gle_passthrough_WT - name: concurrency_WT - name: concurrency_replication_WT - name: concurrency_sharded_WT - name: concurrency_simultaneous_WT - name: dbtest_WT - name: ese_WT - name: failpoints - name: failpoints_auth - name: gle_auth_WT - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd_WT - name: gle_auth_write_cmd_WT - name: httpinterface - name: integration_tests_replset - name: integration_tests_sharded - name: integration_tests_standalone - name: jsCore_WT - name: jsCore_WT_ese - name: jsCore_compatibility_WT - name: jsCore_compression - name: jsCore_decimal_WT - name: jsCore_op_query_WT - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded_WT - name: mongosTest - name: noPassthroughWithMongod_WT - name: noPassthrough_WT - name: parallel_WT - name: parallel_compatibility_WT - name: read_concern_majority_passthrough_WT - name: replica_sets_WT - name: replica_sets_WT_ese - name: replica_sets_auth - name: replica_sets_compression - name: replica_sets_pv0 - name: replica_sets_jscore_passthrough_WT - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough_WT - name: sasl - name: sharded_collections_jscore_passthrough_WT - name: sharding_WT - name: sharding_WT_ese - name: sharding_auth - name: sharding_auth_audit_WT - name: sharding_compression - name: sharding_csrs_continuous_config_stepdown_WT - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_op_query_WT - name: slow1_WT - name: serial_run_WT - name: snmp_WT - name: ssl - name: sslSpecial - name: tool_WT - name: write_concern_majority_passthrough_WT - name: push distros: - ubuntu1604-test - name: enterprise-linux-64-amazon-ami display_name: "Enterprise Amazon Linux" modules: - enterprise run_on: - linux-64-amzn-test batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-amzn64 compile_flags: --ssl MONGO_DISTMOD=amzn64 --release -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(grep -c ^processor /proc/cpuinfo) has_packages: true packager_script: packager-enterprise.py packager_arch: x86_64 packager_distro: amazon repo_edition: enterprise use_scons_cache: true tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - linux-64-amzn-build - name: compile_all distros: - linux-64-amzn-build - name: aggregation_auth - name: aggregation_WT - name: audit - name: audit_WT - name: auth - name: auth_WT - name: auth_audit - name: auth_audit_WT - name: dbtest - name: dbtest_WT - name: ese_WT - name: failpoints_auth - name: jsCore - name: jsCore_WT - name: jsCore_WT_ese - name: jsCore_auth - name: jsCore_decimal - name: jsCore_decimal_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: replica_sets_auth - name: replica_sets_WT_ese - name: master_slave_auth - name: master_slave_WT - name: sasl - name: sharding_auth - name: sharding_auth_audit_WT - name: sharding_WT_ese - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: package distros: - ubuntu1604-packer - name: push distros: - linux-64-amzn-small - name: amazon display_name: SSL Amazon Linux run_on: - linux-64-amzn-test batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-amazon compile_flags: --ssl MONGO_DISTMOD=amazon -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy multiversion_platform_arch: "amzn64" multiversion_edition: "enterprise" num_jobs_available: $(grep -c ^processor /proc/cpuinfo) has_packages: true packager_script: packager.py packager_arch: x86_64 packager_distro: amazon repo_edition: org use_scons_cache: true tooltags: "ssl" build_mongoreplay: true tasks: - name: compile distros: - linux-64-amzn-build - name: compile_all distros: - linux-64-amzn-build - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: dur_jscore_passthrough - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_decimal - name: jsCore_decimal_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: multiversion - name: multiversion_WT - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: sharding_auth - name: sharding_last_stable_mongos_and_mixed_shards - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: package distros: - ubuntu1604-packer - name: push distros: - linux-64-amzn-small ########################################### # Windows buildvariants # ########################################### - name: windows-64 display_name: Windows Vista run_on: - windows-64-vs2015-small batchtime: 1440 # 1 day expansions: platform_decompress: unzip exe: ".exe" push_path: win32 push_bucket: downloads.mongodb.org push_name: win32 push_arch: x86_64 msi_target: msi content_type: application/zip compile_flags: --release -j$(( $(grep -c ^processor /proc/cpuinfo) / 2 )) VARIANT_DIR=win32 python: python num_jobs_available: $(grep -c ^processor /proc/cpuinfo) ext: zip use_scons_cache: true tooltags: "" build_mongoreplay: false tasks: - name: compile distros: - windows-64-vs2015-large - name: compile_all distros: - windows-64-vs2015-large - name: aggregation - name: aggregation_WT - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_decimal - name: jsCore_decimal_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: tool - name: tool_WT - name: push distros: - rhel70-small - name: windows-64-2k8 display_name: Windows 2008R2 run_on: - windows-64-vs2015-small batchtime: 1440 # 1 day expansions: platform_decompress: unzip exe: ".exe" push_path: win32 push_bucket: downloads.mongodb.org push_name: win32 push_arch: x86_64-2008plus multiversion_platform_arch: "windows/x86_64-2008plus" msi_target: msi content_type: application/zip compile_flags: --release --win-version-min=ws08r2 -j$(( $(grep -c ^processor /proc/cpuinfo) / 2 )) MONGO_DISTMOD=2008plus VARIANT_DIR=win32 python: python num_jobs_available: $(grep -c ^processor /proc/cpuinfo) ext: zip use_scons_cache: true tooltags: "" build_mongoreplay: false tasks: - name: compile distros: - windows-64-vs2015-large - name: compile_all distros: - windows-64-vs2015-large - name: aggregation - name: aggregation_WT - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_compression - name: jsCore_decimal - name: jsCore_decimal_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: multiversion - name: multiversion_auth - name: multiversion_WT - name: multiversion_multistorage_engine - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: read_concern_majority_passthrough_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_compression - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: sharding_compression - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_last_stable_mongos_and_mixed_shards - name: tool - name: tool_WT - name: write_concern_majority_passthrough_WT - name: push distros: - rhel70-small - name: windows-64-2k8-debug display_name: "! Windows 2008R2 DEBUG" run_on: - windows-64-vs2015-small expansions: platform_decompress: unzip exe: ".exe" push_path: win32 push_bucket: downloads.mongodb.org push_name: win32-debug push_arch: x86_64-2008plus content_type: application/zip num_jobs_available: $(grep -c ^processor /proc/cpuinfo) compile_flags: --dbg=on --opt=on --win-version-min=ws08r2 -j$(( $(grep -c ^processor /proc/cpuinfo) / 2 )) MONGO_DISTMOD=2008plus python: python ext: zip use_scons_cache: true tooltags: "" build_mongoreplay: false tasks: - name: compile distros: - windows-64-vs2015-large - name: compile_all distros: - windows-64-vs2015-large - name: burn_in_tests - name: aggregation - name: aggregation_WT - name: aggregation_facet_unwind_passthrough_WT - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: httpinterface - name: integration_tests_standalone - name: integration_tests_replset - name: integration_tests_sharded - name: jsCore - name: jsCore_WT - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_compression - name: jsCore_decimal - name: jsCore_decimal_WT - name: mmap - name: mongosTest - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency # Some concurrency workloads require a lot of memory, so we use machines # with more RAM for these suites. distros: - windows-64-vs2015-large - name: concurrency_WT distros: - windows-64-vs2015-large - name: concurrency_replication distros: - windows-64-vs2015-large - name: concurrency_replication_WT distros: - windows-64-vs2015-large - name: concurrency_sharded distros: - windows-64-vs2015-large - name: concurrency_sharded_WT distros: - windows-64-vs2015-large - name: concurrency_simultaneous distros: - windows-64-vs2015-large - name: concurrency_simultaneous_WT distros: - windows-64-vs2015-large - name: read_concern_majority_passthrough_WT distros: - windows-64-vs2015-large - name: read_only - name: read_only_WT - name: read_only_sharded - name: read_only_sharded_WT - name: replica_sets distros: - windows-64-vs2015-large - name: replica_sets_WT distros: - windows-64-vs2015-large - name: replica_sets_jscore_passthrough distros: - windows-64-vs2015-large - name: replica_sets_jscore_passthrough_WT distros: - windows-64-vs2015-large - name: replica_sets_initsync_jscore_passthrough distros: - windows-64-vs2015-large - name: replica_sets_initsync_jscore_passthrough_WT distros: - windows-64-vs2015-large - name: replica_sets_initsync_static_jscore_passthrough distros: - windows-64-vs2015-large - name: replica_sets_initsync_static_jscore_passthrough_WT distros: - windows-64-vs2015-large - name: replica_sets_resync_static_jscore_passthrough distros: - windows-64-vs2015-large - name: replica_sets_resync_static_jscore_passthrough_WT distros: - windows-64-vs2015-large - name: replica_sets_kill_secondaries_jscore_passthrough_WT distros: - windows-64-vs2015-large - name: master_slave - name: master_slave_WT - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sharding distros: - windows-64-vs2015-large - name: sharding_WT distros: - windows-64-vs2015-large - name: tool - name: tool_WT - name: write_concern_majority_passthrough_WT distros: - windows-64-vs2015-large - name: enterprise-windows-64 display_name: "* Enterprise Windows" modules: - enterprise run_on: - windows-64-vs2015-small expansions: platform_decompress: unzip exe: ".exe" push_path: win32 push_bucket: downloads.10gen.com push_name: win32 push_arch: x86_64-enterprise-windows-64 msi_target: msi content_type: application/zip compile_flags: --release --ssl MONGO_DISTMOD=windows-64 CPPPATH="c:/openssl/include c:/sasl/include c:/snmp/include c:/curl/include" LIBPATH="c:/openssl/lib c:/sasl/lib c:/snmp/lib c:/curl/lib" -j$(( $(grep -c ^processor /proc/cpuinfo) / 2 )) --dynamic-windows --win-version-min=ws08r2 VARIANT_DIR=win32 python: python num_jobs_available: $(grep -c ^processor /proc/cpuinfo) ext: zip use_scons_cache: true tooltags: "ssl sasl" build_mongoreplay: false tasks: - name: compile distros: - windows-64-vs2015-large - name: compile_all distros: - windows-64-vs2015-large - name: audit - name: audit_WT - name: auth_audit - name: auth_audit_WT - name: dbtest - name: dbtest_WT - name: ese_WT - name: external_auth_WT - name: jsCore - name: jsCore_WT - name: jsCore_WT_ese - name: jsCore_decimal - name: jsCore_decimal_WT - name: sharding_WT_ese - name: jsCore_auth - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: replica_sets_auth - name: replica_sets_WT_ese - name: sasl - name: sharding_auth - name: sharding_auth_audit_WT - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: push distros: - rhel70-small - name: enterprise-windows-64-inmem display_name: Enterprise Windows (inMemory) modules: - enterprise run_on: - windows-64-vs2015-small batchtime: 1440 # 1 day expansions: platform_decompress: unzip exe: ".exe" push_path: win32 push_bucket: downloads.10gen.com push_name: win32 push_arch: x86_64-enterprise-windows-64 msi_target: msi content_type: application/zip compile_flags: --release --ssl MONGO_DISTMOD=windows-64 CPPPATH="c:/openssl/include c:/sasl/include c:/snmp/include c:/curl/include" LIBPATH="c:/openssl/lib c:/sasl/lib c:/snmp/lib c:/curl/lib" -j$(( $(grep -c ^processor /proc/cpuinfo) / 2 )) --dynamic-windows --win-version-min=ws08r2 VARIANT_DIR=win32 python: python num_jobs_available: $(grep -c ^processor /proc/cpuinfo) test_flags: --storageEngine=inMemory variant_excluded_flags: requires_persistence,requires_journaling ext: zip use_scons_cache: true tooltags: "ssl sasl" build_mongoreplay: false tasks: - name: compile distros: - windows-64-vs2015-large - name: compile_all distros: - windows-64-vs2015-large - name: audit - name: audit_WT - name: auth_audit - name: dbtest - name: concurrency distros: - windows-64-vs2015-large # Some workloads require a lot of memory, use a bigger machine for this suite. - name: concurrency_replication - name: concurrency_sharded - name: concurrency_simultaneous - name: jsCore - name: jsCore_auth - name: jstestfuzz - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded_WT - name: replica_sets_auth - name: replica_sets_jscore_passthrough - name: master_slave_jscore_passthrough - name: sasl - name: sharding_auth - name: sharding_auth_audit_WT - name: snmp - name: ssl - name: sslSpecial - name: enterprise-rhel-80-64-bit display_name: "Enterprise RHEL 8.0" modules: - enterprise run_on: - rhel80-test expansions: push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-rhel80 mh_target: dist-mh compile_flags: --ssl MONGO_DISTMOD=rhel80 -j$(grep -c ^processor /proc/cpuinfo) --release --variables-files=etc/scons/mongodbtoolchain_gcc.vars multiversion_platform: rhel80 multiversion_edition: enterprise has_packages: true packager_script: packager-enterprise.py packager_arch: x86_64 packager_distro: rhel80 repo_edition: enterprise scons_cache_scope: shared tooltags: "ssl sasl gssapi" build_mongoreplay: true tasks: - name: compile distros: - rhel80-build - name: compile_all distros: - rhel80-build - name: audit_WT - name: auth_audit_WT - name: dbtest_WT - name: ese_WT - name: jsCore - name: jsCore_auth - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded_WT - name: external_auth_WT - name: replica_sets_auth - name: sasl - name: sharding_auth - name: sharding_auth_audit_WT - name: snmp_WT - name: ssl - name: sslSpecial - name: package distros: - ubuntu1604-packer - name: push distros: - rhel80-small - name: windows-64-2k8-ssl display_name: SSL Windows 2008R2 run_on: - windows-64-vs2015-small batchtime: 1440 # 1 day expansions: platform_decompress: unzip exe: ".exe" push_path: win32 push_bucket: downloads.mongodb.org push_name: win32 push_arch: x86_64-2008plus-ssl msi_target: msi content_type: application/zip compile_flags: --release --ssl MONGO_DISTMOD=2008plus-ssl CPPPATH="c:/openssl/include" LIBPATH="c:/openssl/lib" -j$(( $(grep -c ^processor /proc/cpuinfo) / 2 )) --dynamic-windows --win-version-min=ws08r2 VARIANT_DIR=win32 python: python num_jobs_available: $(grep -c ^processor /proc/cpuinfo) ext: zip use_scons_cache: true tooltags: "ssl" build_mongoreplay: false tasks: - name: compile distros: - windows-64-vs2015-large - name: compile_all distros: - windows-64-vs2015-large - name: aggregation - name: aggregation_WT - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: jsCore - name: jsCore_WT - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_decimal - name: jsCore_decimal_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: tool - name: tool_WT - name: ssl - name: sslSpecial - name: push distros: - rhel70-small - name: enterprise-windows-64-2k8-debug-unoptimized display_name: Enterprise Windows 2008R2 DEBUG (Unoptimized) modules: - enterprise run_on: - windows-64-vs2015-small batchtime: 1440 # 1 day expansions: platform_decompress: unzip exe: ".exe" content_type: application/zip compile_flags: --dbg=on --opt=off --ssl MONGO_DISTMOD=2008plus CPPPATH="c:/openssl/include c:/sasl/include c:/snmp/include c:/curl/include" LIBPATH="c:/openssl/lib c:/sasl/lib c:/snmp/lib c:/curl/lib" -j$(( $(grep -c ^processor /proc/cpuinfo) / 2 )) --dynamic-windows --win-version-min=ws08r2 VARIANT_DIR=win32 python: python num_jobs_available: $(grep -c ^processor /proc/cpuinfo) ext: zip use_scons_cache: true tooltags: "ssl sasl" build_mongoreplay: false tasks: # This variant tests that unoptimized, DEBUG mongos and mongod binaries can run on Windows. # It has a minimal amount of tasks because unoptimized builds are slow, which causes # timing-sensitive tests to fail. - name: compile distros: - windows-64-vs2015-large - name: audit_WT # Do not add more tasks to this list. ########################################### # OSX buildvariants # ########################################### - name: osx-108 display_name: OS X 10.8 run_on: - macos-1012 batchtime: 1440 # 1 day expansions: push_path: osx push_bucket: downloads.mongodb.org push_name: osx push_arch: x86_64 compile_flags: --allocator=system -j$(sysctl -n hw.logicalcpu) --release --osx-version-min=10.8 --libc++ num_jobs_available: 1 tooltags: "" build_mongoreplay: true tasks: - name: compile - name: compile_all - name: aggregation - name: aggregation_WT - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: httpinterface - name: jsCore - name: jsCore_WT - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_compression - name: jsCore_decimal - name: jsCore_decimal_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_compression - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: tool - name: tool_WT - name: push distros: - rhel70-small - name: osx-108-ssl display_name: SSL OS X 10.8 run_on: - macos-1012 batchtime: 1440 # 1 day expansions: push_path: osx push_bucket: downloads.mongodb.org push_name: osx-ssl push_arch: x86_64 compile_flags: --ssl --allocator=system -j$(sysctl -n hw.logicalcpu) --release --osx-version-min=10.8 --libc++ CPPPATH=/opt/mongodbtoolchain/v2/include num_jobs_available: 1 variant_excluded_flags: requires_ssl_mongo_tools tooltags: "ssl" build_mongoreplay: true tasks: - name: compile - name: compile_all - name: aggregation - name: aggregation_WT - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_decimal - name: jsCore_decimal_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: read_concern_majority_passthrough_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: replica_sets_kill_secondaries_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: write_concern_majority_passthrough_WT - name: push distros: - rhel70-small - name: rhel80 display_name: SSL RHEL 8.0 run_on: - rhel80-test batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-rhel80 compile_flags: --ssl MONGO_DISTMOD=rhel80 -j$(grep -c ^processor /proc/cpuinfo) --release --variables-files=etc/scons/mongodbtoolchain_gcc.vars multiversion_platform: rhel80 multiversion_edition: targeted has_packages: true packager_script: packager.py packager_arch: x86_64 packager_distro: rhel80 repo_edition: org scons_cache_scope: shared tooltags: "ssl" build_mongoreplay: true tasks: - name: compile distros: - rhel80-build - name: compile_all distros: - rhel80-build - name: aggregation_WT - name: aggregation_auth - name: auth_WT - name: dbtest_WT - name: failpoints - name: failpoints_auth - name: gle_auth_WT - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd_WT - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility_WT - name: jsCore_decimal_WT - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded_WT - name: mongosTest - name: multiversion_WT - name: noPassthrough_WT - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough_WT - name: parallel_WT - name: parallel_compatibility_WT - name: concurrency_WT distros: - rhel80-build - name: concurrency_replication_WT distros: - rhel80-build - name: concurrency_sharded_WT distros: - rhel80-build - name: concurrency_simultaneous_WT distros: - rhel80-build - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_jscore_passthrough_WT - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough_WT - name: sharding_WT - name: sharding_auth - name: slow1_WT - name: serial_run_WT - name: sharding_jscore_passthrough_WT - name: sharding_last_stable_mongos_and_mixed_shards - name: ssl - name: sslSpecial - name: tool_WT - name: package distros: - ubuntu1604-packer - name: push distros: - rhel80-small - name: osx-108-debug display_name: "* OS X 10.8 DEBUG" run_on: - macos-1012 expansions: push_path: osx push_bucket: downloads.mongodb.org push_name: osx-debug push_arch: x86_64 num_jobs_available: 1 compile_flags: --dbg=on --opt=on --allocator=system -j$(sysctl -n hw.logicalcpu) --osx-version-min=10.8 --libc++ tooltags: "" build_mongoreplay: true tasks: - name: compile - name: compile_all - name: aggregation - name: aggregation_WT - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: jsCore - name: jsCore_WT - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_decimal - name: jsCore_decimal_WT - name: mmap - name: mongosTest - name: replica_sets - name: replica_sets_WT - name: master_slave - name: master_slave_WT - name: tool - name: tool_WT - name: enterprise-osx-108 display_name: Enterprise OS X 10.8 modules: - enterprise run_on: - macos-1012 batchtime: 1440 # 1 day expansions: push_path: osx push_bucket: downloads.10gen.com push_name: osx push_arch: x86_64-enterprise compile_flags: --ssl --allocator=system -j$(sysctl -n hw.logicalcpu) --release --osx-version-min=10.8 --libc++ CPPPATH=/opt/mongodbtoolchain/v2/include num_jobs_available: 1 variant_excluded_flags: requires_ssl_mongo_tools tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile - name: compile_all - name: audit - name: audit_WT - name: auth_audit - name: auth_audit_WT - name: dbtest - name: dbtest_WT - name: ese_WT - name: jsCore - name: jsCore_auth - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: replica_sets_auth - name: sasl - name: ssl - name: sslSpecial - name: push distros: - rhel70-small ########################################### # Redhat buildvariants # ########################################### - name: enterprise-rhel-62-64-bit display_name: "! Enterprise RHEL 6.2" modules: - enterprise run_on: - rhel62-small expansions: push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-rhel62 rlp_environment: MONGOD_UNITTEST_RLP_LANGUAGE_TEST_BTROOT=/opt/basis compile_flags: --ssl MONGO_DISTMOD=rhel62 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy CPPPATH="/opt/basis/rlp/rlp/include /opt/basis/rlp/utilities/include" --use-basis-tech-rosette-linguistics-platform=on multiversion_platform_arch: "rhel62" multiversion_edition: "targeted" num_jobs_available: $(grep -c ^processor /proc/cpuinfo) has_packages: true packager_script: packager-enterprise.py packager_arch: x86_64 packager_distro: rhel62 repo_edition: enterprise use_scons_cache: true tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - rhel62-large - name: compile_all distros: - rhel62-large - name: lint - name: lint_fuzzer_sanity_patch - name: burn_in_tests - name: aggregation - name: aggregation_WT - name: aggregation_WT_ese - name: aggregation_auth - name: aggregation_facet_unwind_passthrough_WT - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: audit - name: audit_WT - name: auth - name: auth_WT - name: auth_audit - name: auth_audit_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: dbtest - name: dbtest_WT - name: disk - name: dur_jscore_passthrough - name: durability - name: ese_WT - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: httpinterface - name: integration_tests_replset - name: integration_tests_sharded - name: integration_tests_standalone - name: jsCore - name: jsCore_WT - name: jsCore_WT_ese - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_compression - name: jsCore_decimal - name: jsCore_decimal_WT - name: jsCore_minimum_batch_size_WT - name: jsCore_op_query - name: jsCore_op_query_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: jstestfuzz_replication_initsync - name: jstestfuzz_replication_initsync_WT - name: mmap - name: mongosTest - name: multiversion - name: multiversion_auth - name: multiversion_WT - name: multiversion_multistorage_engine - name: noPassthrough - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: noPassthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: read_concern_majority_passthrough_WT distros: - rhel62-large - name: read_only - name: read_only_WT - name: read_only_sharded - name: read_only_sharded_WT - name: replica_sets distros: - rhel62-large - name: replica_sets_WT distros: - rhel62-large - name: replica_sets_WT_ese distros: - rhel62-large - name: replica_sets_auth distros: - rhel62-large - name: replica_sets_compression distros: - rhel62-large - name: replica_sets_pv0 distros: - rhel62-large - name: replica_sets_jscore_passthrough distros: - rhel62-large - name: replica_sets_jscore_passthrough_WT distros: - rhel62-large - name: replica_sets_initsync_jscore_passthrough distros: - rhel62-large - name: replica_sets_initsync_jscore_passthrough_WT distros: - rhel62-large - name: replica_sets_initsync_static_jscore_passthrough distros: - rhel62-large - name: replica_sets_initsync_static_jscore_passthrough_WT distros: - rhel62-large - name: replica_sets_resync_static_jscore_passthrough distros: - rhel62-large - name: replica_sets_resync_static_jscore_passthrough_WT distros: - rhel62-large - name: replica_sets_kill_secondaries_jscore_passthrough_WT distros: - rhel62-large - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: rlp - name: rlp_WT - name: sasl - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding distros: - rhel62-large - name: sharding_WT distros: - rhel62-large - name: sharding_WT_ese distros: - rhel62-large - name: sharding_auth distros: - rhel62-large - name: sharding_auth_audit_WT distros: - rhel62-large - name: sharding_compression distros: - rhel62-large - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_last_stable_mongos_and_mixed_shards distros: - rhel62-large - name: sharding_op_query_WT distros: - rhel62-large - name: sharding_csrs_continuous_config_stepdown_WT distros: - rhel62-large - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: write_concern_majority_passthrough_WT distros: - rhel62-large - name: package distros: - ubuntu1604-packer - name: push distros: - rhel62-small - name: enterprise-rhel-62-64-bit-coverage display_name: "~ Enterprise RHEL 6.2 DEBUG Code Coverage" modules: - enterprise run_on: - rhel62-large batchtime: 10080 # 7 days stepback: false expansions: compile_flags: --dbg=on --gcov --ssl MONGO_DISTMOD=rhel62 -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy multiversion_platform_arch: "rhel62" multiversion_edition: "targeted" num_jobs_available: $(($(grep -c ^processor /proc/cpuinfo) / 2)) # Avoid starting too many mongod's # The gcov instrumentation saves the path the .gcno files were created in as the default path # for the .gcda files. In Evergreen the path will start with /data/mci/[Hashed ID]/src/... where # the hashed ID is unique per task run. GCOV_PREFIX_STRIP is the number of directory levels to # strip from the top of the default path before appending to the GCOV_PREFIX (if any). resmoke_wrapper: GCOV_PREFIX=$(pwd) GCOV_PREFIX_STRIP=4 # Mixing --cache and --gcov doesn't work correctly yet. See SERVER-11084 timeout_secs: 10800 # 3 hour timeout use_scons_cache: false tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - rhel62-large - name: compile_all distros: - rhel62-large - name: aggregation - name: aggregation_WT - name: aggregation_WT_ese - name: aggregation_auth - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: audit - name: audit_WT - name: auth - name: auth_WT - name: auth_audit - name: auth_audit_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: dbtest - name: dbtest_WT - name: disk - name: dur_jscore_passthrough - name: durability - name: ese_WT - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: httpinterface - name: integration_tests_replset - name: integration_tests_sharded - name: integration_tests_standalone - name: jsCore - name: jsCore_WT - name: jsCore_WT_ese - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_compression - name: jsCore_decimal - name: jsCore_decimal_WT - name: jsCore_minimum_batch_size_WT - name: jsCore_op_query - name: jsCore_op_query_WT - name: mmap - name: mongosTest - name: multiversion - name: multiversion_auth - name: multiversion_WT - name: multiversion_multistorage_engine - name: noPassthrough - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: noPassthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: read_concern_majority_passthrough_WT - name: read_only - name: read_only_WT - name: read_only_sharded - name: read_only_sharded_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_WT_ese - name: replica_sets_auth - name: replica_sets_compression - name: replica_sets_pv0 - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: replica_sets_initsync_jscore_passthrough - name: replica_sets_initsync_jscore_passthrough_WT - name: replica_sets_initsync_static_jscore_passthrough - name: replica_sets_initsync_static_jscore_passthrough_WT - name: replica_sets_resync_static_jscore_passthrough - name: replica_sets_resync_static_jscore_passthrough_WT - name: replica_sets_kill_secondaries_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sasl - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: sharding_WT_ese - name: sharding_auth - name: sharding_auth_audit_WT - name: sharding_compression - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_last_stable_mongos_and_mixed_shards - name: sharding_op_query_WT - name: sharding_csrs_continuous_config_stepdown_WT - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: write_concern_majority_passthrough_WT - name: enterprise-rhel-70-64-bit display_name: Enterprise RHEL 7.0 modules: - enterprise run_on: - rhel70-small batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-rhel70 compile_flags: --ssl MONGO_DISTMOD=rhel70 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(grep -c ^processor /proc/cpuinfo) has_packages: true packager_script: packager-enterprise.py packager_arch: x86_64 packager_distro: rhel70 repo_edition: enterprise use_scons_cache: true tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - rhel70 - name: compile_all distros: - rhel70 - name: audit - name: audit_WT - name: dbtest - name: dbtest_WT - name: ese_WT - name: jsCore - name: jsCore_auth - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: external_auth_WT - name: mmap - name: replica_sets_auth - name: sasl - name: sharding_auth - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: package distros: - ubuntu1604-packer - name: push distros: - rhel70-small - name: rhel62 display_name: SSL RHEL 6.2 run_on: - rhel62-small batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-rhel62 compile_flags: --ssl MONGO_DISTMOD=rhel62 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy multiversion_platform_arch: "rhel62" multiversion_edition: "targeted" num_jobs_available: $(grep -c ^processor /proc/cpuinfo) has_packages: true packager_script: packager.py packager_arch: x86_64 packager_distro: rhel62 repo_edition: org use_scons_cache: true tooltags: "ssl" build_mongoreplay: true tasks: - name: compile distros: - rhel62-large - name: compile_all distros: - rhel62-large - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: dur_jscore_passthrough - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_decimal - name: jsCore_decimal_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: multiversion - name: multiversion_WT - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_last_stable_mongos_and_mixed_shards - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: package distros: - ubuntu1604-packer - name: push distros: - rhel62-small - name: rhel70 display_name: SSL RHEL 7.0 run_on: - rhel70-small batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-rhel70 compile_flags: --ssl MONGO_DISTMOD=rhel70 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy multiversion_platform_arch: "rhel70" multiversion_edition: "targeted" num_jobs_available: $(grep -c ^processor /proc/cpuinfo) has_packages: true packager_script: packager.py packager_arch: x86_64 packager_distro: rhel70 repo_edition: org use_scons_cache: true tooltags: "ssl" build_mongoreplay: true tasks: - name: compile distros: - rhel70 - name: compile_all distros: - rhel70 - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: dur_jscore_passthrough - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_decimal - name: jsCore_decimal_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: multiversion - name: multiversion_WT - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency distros: - rhel70 - name: concurrency_WT distros: - rhel70 - name: concurrency_replication distros: - rhel70 - name: concurrency_replication_WT distros: - rhel70 - name: concurrency_sharded distros: - rhel70 - name: concurrency_sharded_WT distros: - rhel70 - name: concurrency_simultaneous distros: - rhel70 - name: concurrency_simultaneous_WT distros: - rhel70 - name: replica_sets - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_last_stable_mongos_and_mixed_shards - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: package distros: - ubuntu1604-packer - name: push distros: - rhel70-small - name: enterprise-rhel-71-ppc64le display_name: Enterprise RHEL 7.1 PPC64LE modules: - enterprise run_on: - rhel71-power8-test batchtime: 1440 # 1 day stepback: false expansions: # We need to compensate for SMT8 setting the cpu count very high and lower the amount of parallelism down compile_flags: --ssl MONGO_DISTMOD=rhel71 --release -j$(echo "$(grep -c processor /proc/cpuinfo)/2" | bc) CCFLAGS="-mcpu=power8 -mtune=power8 -mcmodel=medium" CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(echo "$(grep -c processor /proc/cpuinfo)/4" | bc) variant_excluded_flags: requires_mmapv1,blacklist_from_ppc64le has_packages: true packager_script: packager-enterprise.py packager_arch: ppc64le packager_distro: rhel71 push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: ppc64le-enterprise-rhel71 repo_edition: enterprise tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - rhel71-power8-build - name: compile_all distros: - rhel71-power8-build - name: aggregation_WT - name: aggregation_WT_ese - name: aggregation_auth - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: audit_WT - name: auth_WT - name: auth_audit_WT - name: bulk_gle_passthrough_WT - name: concurrency_WT - name: concurrency_replication_WT - name: concurrency_sharded_WT - name: concurrency_simultaneous_WT - name: dbtest_WT - name: ese_WT - name: failpoints - name: failpoints_auth - name: gle_auth_WT - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd_WT - name: gle_auth_write_cmd_WT - name: httpinterface - name: integration_tests_replset - name: integration_tests_sharded - name: integration_tests_standalone - name: jsCore_WT - name: jsCore_WT_ese - name: jsCore_compatibility_WT - name: jsCore_decimal_WT - name: jsCore_op_query_WT - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded_WT - name: mongosTest - name: noPassthroughWithMongod_WT - name: noPassthrough_WT - name: parallel_WT - name: parallel_compatibility_WT - name: read_concern_majority_passthrough_WT - name: replica_sets_WT - name: replica_sets_WT_ese - name: replica_sets_auth - name: replica_sets_pv0 - name: replica_sets_jscore_passthrough_WT - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough_WT - name: sasl - name: sharded_collections_jscore_passthrough_WT - name: sharding_WT - name: sharding_WT_ese - name: sharding_auth - name: sharding_auth_audit_WT - name: sharding_csrs_continuous_config_stepdown_WT - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_op_query_WT - name: slow1_WT - name: serial_run_WT - name: snmp_WT - name: ssl - name: sslSpecial - name: tool_WT - name: write_concern_majority_passthrough_WT - name: push distros: - rhel70-small - name: enterprise-rhel-72-s390x display_name: Enterprise RHEL 7.2 s390x modules: - enterprise run_on: - rhel72-zseries-test batchtime: 2880 # 2 days stepback: false expansions: compile_flags: --ssl MONGO_DISTMOD=rhel72 --release -j3 CCFLAGS="-march=z196 -mtune=zEC12" CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: 2 variant_excluded_flags: requires_mmapv1 has_packages: true packager_script: packager-enterprise.py packager_arch: s390x packager_distro: rhel72 push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: s390x-enterprise-rhel72 repo_edition: enterprise tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - rhel72-zseries-build - name: compile_all distros: - rhel72-zseries-build - name: aggregation_WT - name: aggregation_WT_ese - name: aggregation_auth - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: audit_WT - name: auth_WT - name: auth_audit_WT - name: bulk_gle_passthrough_WT - name: concurrency_WT - name: concurrency_replication_WT - name: concurrency_sharded_WT - name: concurrency_simultaneous_WT - name: dbtest_WT - name: ese_WT - name: failpoints - name: failpoints_auth - name: gle_auth_WT - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd_WT - name: gle_auth_write_cmd_WT - name: httpinterface - name: integration_tests_replset - name: integration_tests_sharded - name: integration_tests_standalone - name: jsCore_WT - name: jsCore_WT_ese - name: jsCore_compatibility_WT - name: jsCore_decimal_WT - name: jsCore_op_query_WT - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded_WT - name: mongosTest - name: noPassthroughWithMongod_WT - name: noPassthrough_WT - name: parallel_WT - name: parallel_compatibility_WT - name: read_concern_majority_passthrough_WT - name: replica_sets_WT - name: replica_sets_WT_ese - name: replica_sets_auth - name: replica_sets_pv0 - name: replica_sets_jscore_passthrough_WT - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough_WT - name: sasl - name: sharded_collections_jscore_passthrough_WT - name: sharding_WT - name: sharding_WT_ese - name: sharding_auth - name: sharding_auth_audit_WT - name: sharding_csrs_continuous_config_stepdown_WT - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_op_query_WT - name: slow1_WT - name: serial_run_WT - name: snmp_WT - name: ssl - name: sslSpecial - name: tool_WT - name: write_concern_majority_passthrough_WT - name: push distros: - rhel70-small ########################################### # Ubuntu buildvariants # ########################################### - name: enterprise-ubuntu1604-64 display_name: Enterprise Ubuntu 16.04 modules: - enterprise run_on: - ubuntu1604-test batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.10gen.com push_name: linux lang_environment: LANG=C push_arch: x86_64-enterprise-ubuntu1604 compile_flags: --ssl MONGO_DISTMOD=ubuntu1604 --release -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(grep -c ^processor /proc/cpuinfo) has_packages: true packager_script: packager-enterprise.py packager_arch: x86_64 packager_distro: ubuntu1604 repo_edition: enterprise use_scons_cache: true tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - ubuntu1604-build - name: compile_all distros: - ubuntu1604-build - name: audit - name: audit_WT - name: dbtest - name: dbtest_WT - name: ese_WT - name: jepsen_register_findAndModify_WT distros: - ubuntu1604-build - name: jepsen_register_findAndModify_pv0 distros: - ubuntu1604-build - name: jepsen_register_findAndModify_pv0_WT distros: - ubuntu1604-build - name: jepsen_register_linearizableRead distros: - ubuntu1604-build - name: jepsen_register_linearizableRead_WT distros: - ubuntu1604-build - name: jepsen_set_linearizableRead distros: - ubuntu1604-build - name: jepsen_set_linearizableRead_WT distros: - ubuntu1604-build - name: jsCore - name: jsCore_auth - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: replica_sets_auth - name: sasl - name: sharding_auth - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: package distros: - ubuntu1604-packer - name: push distros: - ubuntu1604-small ########################################### # SUSE buildvariants # ########################################### - name: enterprise-suse12-64 display_name: Enterprise SLES 12 modules: - enterprise run_on: - suse12-test batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-suse12 compile_flags: --ssl MONGO_DISTMOD=suse12 --release -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(grep -c ^processor /proc/cpuinfo) has_packages: true packager_script: packager-enterprise.py packager_arch: x86_64 packager_distro: suse12 repo_edition: enterprise use_scons_cache: true tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - suse12-build - name: compile_all distros: - suse12-build - name: audit - name: audit_WT - name: dbtest - name: dbtest_WT - name: ese_WT - name: jsCore - name: jsCore_auth - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: replica_sets_auth - name: sasl - name: sharding_auth - name: mmap - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: package distros: - ubuntu1604-packer - name: push distros: - suse12-small - name: enterprise-suse12-s390x display_name: Enterprise SLES 12 s390x modules: - enterprise run_on: - suse12-zseries-test batchtime: 1440 # 1 day stepback: false expansions: push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: s390x-enterprise-suse12 compile_flags: --ssl MONGO_DISTMOD=suse12 --release -j3 CCFLAGS="-march=z196 -mtune=zEC12" CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(grep -c ^processor /proc/cpuinfo) variant_excluded_flags: requires_mmapv1 has_packages: true packager_script: packager-enterprise.py packager_arch: s390x packager_distro: suse12 repo_edition: enterprise tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - suse12-zseries-build - name: compile_all distros: - suse12-zseries-build - name: aggregation_WT - name: aggregation_WT_ese - name: aggregation_auth - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: audit_WT - name: auth_WT - name: auth_audit_WT - name: bulk_gle_passthrough_WT - name: concurrency_WT - name: concurrency_replication_WT - name: concurrency_sharded_WT - name: concurrency_simultaneous_WT - name: dbtest_WT - name: ese_WT - name: failpoints - name: failpoints_auth - name: gle_auth_WT - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd_WT - name: gle_auth_write_cmd_WT - name: httpinterface - name: integration_tests_replset - name: integration_tests_sharded - name: integration_tests_standalone - name: jsCore_WT - name: jsCore_WT_ese - name: jsCore_compatibility_WT - name: jsCore_decimal_WT - name: jsCore_op_query_WT - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded_WT - name: mongosTest - name: noPassthroughWithMongod_WT - name: noPassthrough_WT - name: parallel_WT - name: parallel_compatibility_WT - name: read_concern_majority_passthrough_WT - name: replica_sets_WT - name: replica_sets_WT_ese - name: replica_sets_auth - name: replica_sets_pv0 - name: replica_sets_jscore_passthrough_WT - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough_WT - name: sasl - name: sharded_collections_jscore_passthrough_WT - name: sharding_WT - name: sharding_WT_ese - name: sharding_auth - name: sharding_auth_audit_WT - name: sharding_csrs_continuous_config_stepdown_WT - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_op_query_WT - name: slow1_WT - name: serial_run_WT - name: snmp_WT - name: ssl - name: sslSpecial - name: tool_WT - name: write_concern_majority_passthrough_WT - name: push distros: - suse12-test - name: suse12 display_name: SSL SUSE 12 run_on: - suse12-test batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-suse12 compile_flags: --ssl MONGO_DISTMOD=suse12 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(grep -c ^processor /proc/cpuinfo) multiversion_platform_arch: "suse12" multiversion_edition: "targeted" has_packages: true packager_script: packager.py packager_arch: x86_64 packager_distro: suse12 repo_edition: org use_scons_cache: true tooltags: "ssl" build_mongoreplay: true tasks: - name: compile distros: - suse12-build - name: compile_all distros: - suse12-build - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: dur_jscore_passthrough - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: multiversion - name: multiversion_WT - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: sharding_auth - name: sharding_last_stable_mongos_and_mixed_shards - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: package distros: - ubuntu1604-packer - name: push distros: - suse12-small ########################################### # Debian buildvariants # ########################################### - name: enterprise-debian81-64 display_name: Enterprise Debian 8.1 modules: - enterprise run_on: - debian81-test batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-debian81 compile_flags: --ssl MONGO_DISTMOD=debian81 --release -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(grep -c ^processor /proc/cpuinfo) has_packages: true packager_script: packager-enterprise.py packager_arch: x86_64 packager_distro: debian81 repo_edition: enterprise use_scons_cache: true tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - debian81-build - name: compile_all distros: - debian81-build - name: audit - name: audit_WT - name: dbtest - name: dbtest_WT - name: ese_WT - name: jsCore - name: jsCore_auth - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: replica_sets_auth - name: sasl - name: sharding_auth - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: package distros: - ubuntu1604-packer - name: push distros: - debian81-small - name: debian81 display_name: SSL Debian 8.1 run_on: - debian81-test batchtime: 1440 # 1 day expansions: push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-debian81 compile_flags: --ssl MONGO_DISTMOD=debian81 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy multiversion_platform_arch: "debian81" multiversion_edition: "targeted" num_jobs_available: $(grep -c ^processor /proc/cpuinfo) has_packages: true packager_script: packager.py packager_arch: x86_64 packager_distro: debian81 repo_edition: org use_scons_cache: true tooltags: "ssl" build_mongoreplay: true tasks: - name: compile distros: - debian81-build - name: compile_all distros: - debian81-build - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: dur_jscore_passthrough - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: mmap - name: mongosTest - name: multiversion - name: multiversion_WT - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: sharding_auth - name: sharding_last_stable_mongos_and_mixed_shards - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: package distros: - ubuntu1604-packer - name: push distros: - debian81-small ################################ # storage engine buildvariants # ################################ - name: enterprise-rhel-62-64-bit-inmem display_name: Enterprise RHEL 6.2 (inMemory) modules: - enterprise run_on: - rhel62-small batchtime: 1440 # 1 day expansions: rlp_environment: MONGOD_UNITTEST_RLP_LANGUAGE_TEST_BTROOT=/opt/basis test_flags: --storageEngine=inMemory compile_flags: --ssl MONGO_DISTMOD=rhel62 -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy CPPPATH="/opt/basis/rlp/rlp/include /opt/basis/rlp/utilities/include" --use-basis-tech-rosette-linguistics-platform=on num_jobs_available: $(grep -c ^processor /proc/cpuinfo) variant_excluded_flags: requires_persistence,requires_journaling use_scons_cache: true tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - rhel62-large - name: compile_all distros: - rhel62-large - name: aggregation_WT - name: aggregation_auth - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: audit - name: auth - name: auth_audit - name: bulk_gle_passthrough - name: concurrency distros: - rhel62-large # Some workloads require a lot of memory, use a bigger machine for this suite. - name: concurrency_replication - name: concurrency_sharded - name: concurrency_simultaneous - name: dbtest - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_write_cmd - name: integration_tests_replset - name: integration_tests_sharded - name: integration_tests_standalone - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_op_query - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded_WT - name: mongosTest - name: noPassthrough - name: noPassthroughWithMongod - name: parallel - name: parallel_compatibility - name: read_concern_majority_passthrough_WT - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_pv0 - name: replica_sets_jscore_passthrough - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: rlp - name: sasl - name: sharded_collections_jscore_passthrough - name: sharding - name: sharding_auth - name: sharding_auth_audit_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_op_query_WT - name: slow1 - name: serial_run - name: snmp - name: ssl - name: sslSpecial - name: tool - name: write_concern_majority_passthrough_WT - name: linux-64-ephemeralForTest display_name: Linux (ephemeralForTest) run_on: - rhel62-small batchtime: 1440 # 1 day expansions: test_flags: --storageEngine=ephemeralForTest compile_flags: -j$(grep -c ^processor /proc/cpuinfo) --dbg=off --opt=on CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(grep -c ^processor /proc/cpuinfo) variant_excluded_flags: requires_persistence,requires_fsync,SERVER-21420,SERVER-21658,requires_journaling,requires_document_locking use_scons_cache: true tooltags: "" build_mongoreplay: true tasks: - name: compile distros: - rhel62-large - name: compile_all distros: - rhel62-large - name: aggregation_WT - name: aggregation_auth - name: auth # Disabled due to SERVER-21965 # - name: concurrency # distros: # - rhel62-large # Some workloads require a lot of memory, use a bigger machine for this suite. # - name: concurrency_replication # - name: concurrency_sharded # - name: concurrency_simultaneous - name: dbtest - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_write_cmd - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_write_cmd - name: httpinterface - name: integration_tests_standalone - name: integration_tests_replset - name: integration_tests_sharded - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_write_cmd - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_op_query - name: jsCore_compatibility # Disabled due to SERVER-21965 # - name: jstestfuzz_WT # - name: jstestfuzz_concurrent_WT # - name: jstestfuzz_concurrent_replication_WT # - name: jstestfuzz_concurrent_sharded_WT # - name: jstestfuzz_replication_WT # - name: jstestfuzz_sharded_WT - name: mongosTest - name: noPassthrough - name: noPassthroughWithMongod - name: bulk_gle_passthrough - name: noPassthrough - name: noPassthroughWithMongod - name: parallel - name: parallel_compatibility - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_pv0 - name: replica_sets_jscore_passthrough - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: sharding - name: sharding_auth - name: sharding_op_query_WT - name: slow1 - name: serial_run - name: sharded_collections_jscore_passthrough - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_wire_ops_WT - name: tool - name: enterprise-rhel-71-ppc64le-inmem display_name: Enterprise RHEL 7.1 PPC64LE (inMemory) DEBUG modules: - enterprise run_on: - rhel71-power8-test batchtime: 10080 # 7 days stepback: false expansions: # We need to compensate for SMT8 setting the cpu count very high and lower the amount of parallelism down compile_flags: --dbg=on --opt=on --ssl MONGO_DISTMOD=rhel71 -j$(echo "$(grep -c processor /proc/cpuinfo)/2" | bc) CCFLAGS="-mcpu=power8 -mtune=power8 -mcmodel=medium" CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: $(echo "$(grep -c processor /proc/cpuinfo)/4" | bc) test_flags: --storageEngine=inMemory variant_excluded_flags: requires_persistence,requires_mmapv1,requires_journaling,blacklist_from_ppc64le tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - rhel71-power8-build - name: compile_all distros: - rhel71-power8-build - name: aggregation_WT - name: aggregation_auth - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: audit - name: auth - name: auth_audit - name: bulk_gle_passthrough - name: concurrency - name: concurrency_replication - name: concurrency_sharded - name: concurrency_simultaneous - name: dbtest - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_write_cmd - name: integration_tests_replset - name: integration_tests_sharded - name: integration_tests_standalone - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_op_query - name: mongosTest - name: noPassthrough - name: noPassthroughWithMongod - name: parallel - name: parallel_compatibility - name: read_concern_majority_passthrough_WT - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_pv0 - name: replica_sets_jscore_passthrough - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: sasl - name: sharded_collections_jscore_passthrough - name: sharding - name: sharding_auth - name: sharding_auth_audit_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_op_query_WT - name: slow1 - name: serial_run - name: snmp - name: ssl - name: sslSpecial - name: tool - name: write_concern_majority_passthrough_WT - name: enterprise-rhel-72-s390x-inmem display_name: Enterprise RHEL 7.2 s390x (inMemory) DEBUG modules: - enterprise run_on: - rhel72-zseries-test batchtime: 10080 # 7 days stepback: false expansions: compile_flags: --dbg=on --opt=on --ssl --link-model=static MONGO_DISTMOD=rhel72 -j3 CCFLAGS="-march=z196 -mtune=zEC12" CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy num_jobs_available: 2 test_flags: --storageEngine=inMemory variant_excluded_flags: requires_persistence,requires_mmapv1,requires_journaling tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - rhel72-zseries-build - name: compile_all distros: - rhel72-zseries-build - name: aggregation_WT - name: aggregation_auth - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: audit - name: auth - name: auth_audit - name: bulk_gle_passthrough - name: concurrency distros: - rhel72-zseries-build - name: concurrency_replication distros: - rhel72-zseries-build - name: concurrency_sharded distros: - rhel72-zseries-build - name: concurrency_simultaneous distros: - rhel72-zseries-build - name: dbtest - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_write_cmd - name: integration_tests_replset - name: integration_tests_sharded - name: integration_tests_standalone - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_op_query - name: mongosTest - name: noPassthrough - name: noPassthroughWithMongod - name: parallel - name: parallel_compatibility - name: read_concern_majority_passthrough_WT - name: replica_sets_WT - name: replica_sets_auth - name: replica_sets_pv0 - name: replica_sets_jscore_passthrough - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: sasl - name: sharded_collections_jscore_passthrough - name: sharding - name: sharding_auth - name: sharding_auth_audit_WT - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_op_query_WT - name: slow1 - name: serial_run - name: snmp - name: ssl - name: sslSpecial - name: tool - name: write_concern_majority_passthrough_WT ########################################### # Experimental buildvariants # ########################################### - name: ubuntu1604-debug-asan display_name: ~ ASAN Enterprise SSL Ubuntu 16.04 DEBUG modules: - enterprise run_on: - ubuntu1604-build stepback: true batchtime: 1440 # 1 day expansions: # We need llvm-symbolizer in the PATH for ASAN for clang-3.7 or later. variant_path_suffix: /usr/lib/llvm-3.8/bin lang_environment: LANG=C san_options: LSAN_OPTIONS="suppressions=etc/lsan.suppressions" ASAN_OPTIONS=detect_leaks=1 compile_flags: CC=/usr/bin/clang-3.8 CXX=/usr/bin/clang++-3.8 CPPDEFINES="_GLIBCXX_USE_CXX11_ABI=0" --dbg=on --opt=on --allocator=system --sanitize=address --ssl -j$(grep -c ^processor /proc/cpuinfo) --nostrip VARIANT_DIR=build multiversion_platform_arch: "ubuntu1604" multiversion_edition: "targeted" num_jobs_available: $(($(grep -c ^processor /proc/cpuinfo) / 3)) # Avoid starting too many mongod's under ASAN build. tooltags: "ssl sasl" build_mongoreplay: true hang_analyzer_dump_core: false tasks: - name: compile - name: compile_all - name: aggregation - name: aggregation_WT - name: aggregation_WT_ese - name: aggregation_auth - name: aggregation_facet_unwind_passthrough_WT - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: audit - name: audit_WT - name: auth - name: auth_WT - name: auth_audit - name: auth_audit_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: dbtest - name: dbtest_WT - name: disk - name: dur_jscore_passthrough - name: durability - name: ese_WT - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: httpinterface - name: integration_tests_replset - name: integration_tests_sharded - name: integration_tests_standalone - name: jsCore - name: jsCore_WT - name: jsCore_WT_ese - name: jsCore_inMem - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_compression - name: jsCore_decimal - name: jsCore_decimal_WT - name: jsCore_minimum_batch_size_WT - name: jsCore_op_query - name: jsCore_op_query_WT - name: mmap - name: mongosTest - name: multiversion - name: multiversion_auth - name: multiversion_WT - name: multiversion_multistorage_engine - name: noPassthrough - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: noPassthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: read_concern_majority_passthrough_WT - name: read_only - name: read_only_WT - name: read_only_sharded - name: read_only_sharded_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_WT_ese - name: replica_sets_auth - name: replica_sets_compression - name: replica_sets_pv0 - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: replica_sets_initsync_jscore_passthrough - name: replica_sets_initsync_jscore_passthrough_WT - name: replica_sets_initsync_static_jscore_passthrough - name: replica_sets_initsync_static_jscore_passthrough_WT - name: replica_sets_resync_static_jscore_passthrough - name: replica_sets_resync_static_jscore_passthrough_WT - name: replica_sets_kill_secondaries_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sasl - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: sharding_WT_ese - name: sharding_auth - name: sharding_auth_audit_WT - name: sharding_compression - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: sharding_last_stable_mongos_and_mixed_shards - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_op_query_WT - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: write_concern_majority_passthrough_WT - name: ubuntu1604-asan display_name: ~ ASAN SSL Ubuntu 16.04 run_on: - ubuntu1604-build stepback: true batchtime: 1440 # 1 day expansions: # We need llvm-symbolizer in the PATH for ASAN for clang-3.7 or later. variant_path_suffix: /usr/lib/llvm-3.8/bin lang_environment: LANG=C san_options: LSAN_OPTIONS="suppressions=etc/lsan.suppressions" ASAN_OPTIONS=detect_leaks=1 compile_flags: CC=/usr/bin/clang-3.8 CXX=/usr/bin/clang++-3.8 CPPDEFINES="_GLIBCXX_USE_CXX11_ABI=0" --opt=on --allocator=system --sanitize=address --ssl -j$(grep -c ^processor /proc/cpuinfo) --nostrip VARIANT_DIR=build num_jobs_available: $(($(grep -c ^processor /proc/cpuinfo) / 3)) # Avoid starting too many mongod's under ASAN build. tooltags: "ssl" build_mongoreplay: true hang_analyzer_dump_core: false tasks: - name: compile - name: compile_all - name: jstestfuzz - name: jstestfuzz_WT - name: jstestfuzz_concurrent_WT - name: jstestfuzz_concurrent_replication_WT - name: jstestfuzz_concurrent_sharded_WT - name: jstestfuzz_replication - name: jstestfuzz_replication_WT - name: jstestfuzz_sharded - name: jstestfuzz_sharded_WT - name: ubuntu1604-debug-ubsan display_name: ~ UBSAN Enterprise Ubuntu 16.04 DEBUG modules: - enterprise run_on: - ubuntu1604-build stepback: true batchtime: 1440 # 1 day expansions: # We need llvm-symbolizer in the PATH for UBSAN. variant_path_suffix: /usr/lib/llvm-3.8/bin lang_environment: LANG=C san_options: UBSAN_OPTIONS="print_stacktrace=1" compile_flags: CC=/usr/bin/clang-3.8 CXX=/usr/bin/clang++-3.8 --dbg=on --opt=on --allocator=system --sanitize=undefined --ssl -j$(grep -c ^processor /proc/cpuinfo) --nostrip CXXFLAGS="-nostdlib -nostdinc++" LIBPATH=/opt/mongodbtoolchain/v2/lib/gcc/x86_64-mongodb-linux/5.4.0 CPPPATH="/opt/mongodbtoolchain/v2/include/c++/5.4.0/ /opt/mongodbtoolchain/v2/include/c++/5.4.0/x86_64-mongodb-linux" CPPDEFINES="_GLIBCXX_USE_CXX11_ABI=0" VARIANT_DIR=build multiversion_platform_arch: "ubuntu1604" multiversion_edition: "targeted" num_jobs_available: $(($(grep -c ^processor /proc/cpuinfo) / 3)) # Avoid starting too many mongod's under UBSAN build. tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - ubuntu1604-build - name: compile_all distros: - ubuntu1604-build - name: aggregation - name: aggregation_WT - name: aggregation_WT_ese - name: aggregation_auth - name: aggregation_facet_unwind_passthrough_WT - name: aggregation_read_concern_majority_passthrough_WT - name: aggregation_sharded_collections_passthrough_WT - name: audit - name: audit_WT - name: auth - name: auth_WT - name: auth_audit - name: auth_audit_WT - name: bulk_gle_passthrough - name: bulk_gle_passthrough_WT - name: concurrency - name: concurrency_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: concurrency_simultaneous - name: concurrency_simultaneous_WT - name: dbtest - name: dbtest_WT - name: disk - name: dur_jscore_passthrough - name: durability - name: ese_WT - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_basics_passthrough - name: gle_auth_basics_passthrough_WT - name: gle_auth_basics_passthrough_write_cmd - name: gle_auth_basics_passthrough_write_cmd_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: httpinterface - name: integration_tests_replset - name: integration_tests_sharded - name: integration_tests_standalone - name: jsCore - name: jsCore_WT - name: jsCore_WT_ese - name: jsCore_inMem - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_compression - name: jsCore_decimal - name: jsCore_decimal_WT - name: jsCore_minimum_batch_size_WT - name: jsCore_op_query - name: jsCore_op_query_WT - name: mmap - name: mongosTest - name: multiversion - name: multiversion_auth - name: multiversion_WT - name: multiversion_multistorage_engine - name: noPassthrough - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: noPassthrough_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: read_concern_majority_passthrough_WT - name: read_only - name: read_only_WT - name: read_only_sharded - name: read_only_sharded_WT - name: replica_sets - name: replica_sets_WT - name: replica_sets_WT_ese - name: replica_sets_auth - name: replica_sets_compression - name: replica_sets_pv0 - name: replica_sets_jscore_passthrough - name: replica_sets_jscore_passthrough_WT - name: replica_sets_initsync_jscore_passthrough - name: replica_sets_initsync_jscore_passthrough_WT - name: replica_sets_initsync_static_jscore_passthrough - name: replica_sets_initsync_static_jscore_passthrough_WT - name: replica_sets_resync_static_jscore_passthrough - name: replica_sets_resync_static_jscore_passthrough_WT - name: replica_sets_kill_secondaries_jscore_passthrough_WT - name: master_slave - name: master_slave_WT - name: master_slave_auth - name: master_slave_jscore_passthrough - name: master_slave_jscore_passthrough_WT - name: sasl - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding - name: sharding_WT - name: sharding_WT_ese - name: sharding_auth - name: sharding_auth_audit_WT - name: sharding_compression - name: sharding_gle_auth_basics_passthrough - name: sharding_gle_auth_basics_passthrough_WT - name: sharding_gle_auth_basics_passthrough_write_cmd - name: sharding_gle_auth_basics_passthrough_write_cmd_WT - name: sharding_last_stable_mongos_and_mixed_shards - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_op_query_WT - name: slow1 - name: slow1_WT - name: serial_run - name: serial_run_WT - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: write_concern_majority_passthrough_WT - name: enterprise-ubuntu-dynamic-1604-64-bit display_name: "* Shared Library Enterprise Ubuntu 16.04" modules: - enterprise expansions: lang_environment: LANG=C compile_flags: --ssl MONGO_DISTMOD=ubuntu1604 -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy --link-model=dynamic num_jobs_available: $(grep -c ^processor /proc/cpuinfo) use_scons_cache: true scons_cache_mode: all tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - ubuntu1604-build - name: compile_all distros: - ubuntu1604-build - name: initsync-3dot2-rhel-62 display_name: "~ Initial Sync 3.2 Enterprise RHEL 6.2" modules: - enterprise run_on: - rhel62-small batchtime: 1440 # 1 day expansions: rlp_environment: MONGOD_UNITTEST_RLP_LANGUAGE_TEST_BTROOT=/opt/basis test_flags: "\"--mongodSetParameters={use3dot2InitialSync: true, initialSyncOplogBuffer: \"inMemoryBlockingQueue\"}\"" variant_excluded_flags: requires_3dot4_initial_sync compile_flags: --ssl MONGO_DISTMOD=rhel62 -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ OBJCOPY=/opt/mongodbtoolchain/v2/bin/objcopy CPPPATH="/opt/basis/rlp/rlp/include /opt/basis/rlp/utilities/include" --use-basis-tech-rosette-linguistics-platform=on num_jobs_available: $(grep -c ^processor /proc/cpuinfo) use_scons_cache: true tooltags: "ssl sasl" build_mongoreplay: true tasks: - name: compile distros: - rhel62-large - name: compile_all distros: - rhel62-large - name: auth - name: auth_WT - name: concurrency_replication - name: concurrency_replication_WT - name: concurrency_sharded - name: concurrency_sharded_WT - name: jsCore - name: jsCore_WT - name: noPassthrough - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: noPassthrough_WT - name: read_concern_majority_passthrough_WT distros: - rhel62-large - name: replica_sets distros: - rhel62-large - name: replica_sets_WT distros: - rhel62-large - name: replica_sets_WT_ese distros: - rhel62-large - name: replica_sets_auth distros: - rhel62-large - name: replica_sets_pv0 distros: - rhel62-large - name: replica_sets_jscore_passthrough distros: - rhel62-large - name: replica_sets_jscore_passthrough_WT distros: - rhel62-large - name: replica_sets_initsync_static_jscore_passthrough distros: - rhel62-large - name: replica_sets_initsync_static_jscore_passthrough_WT distros: - rhel62-large - name: replica_sets_resync_static_jscore_passthrough distros: - rhel62-large - name: replica_sets_resync_static_jscore_passthrough_WT distros: - rhel62-large - name: sharded_collections_jscore_passthrough - name: sharded_collections_jscore_passthrough_WT - name: sharding distros: - rhel62-large - name: sharding_WT distros: - rhel62-large - name: sharding_WT_ese distros: - rhel62-large - name: sharding_auth distros: - rhel62-large - name: sharding_auth_audit_WT distros: - rhel62-large - name: sharding_jscore_passthrough - name: sharding_jscore_passthrough_WT - name: sharding_jscore_passthrough_wire_ops_WT - name: sharding_last_stable_mongos_and_mixed_shards distros: - rhel62-large - name: sharding_op_query_WT distros: - rhel62-large - name: sharding_csrs_continuous_config_stepdown_WT distros: - rhel62-large - name: slow1 - name: slow1_WT - name: write_concern_majority_passthrough_WT distros: - rhel62-large - name: tig-daily-cron modules: - enterprise display_name: "~ TIG Daily Cron" run_on: - rhel62-small batchtime: 1440 # 1 day stepback: false tasks: - name: lint_fuzzer_sanity_all