##################################################### # 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 cofiguration # 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). # Others include: # - 'builder' # - 'builder_num' # - 'builde functions: "fetch source" : command: git.get_project params: directory: src "get buildnumber": command: keyval.inc params: key: "${build_variant}_master" destination: "builder_num" "fetch binaries" : command: s3.get params: aws_key: ${aws_key} aws_secret: ${aws_secret} remote_file: mongodb-mongo-master/${build_variant}/${revision}/binaries/mongo-${build_id}.${ext|tgz} bucket: mciuploads local_file: src/mongo-binaries.tgz "setup credentials" : command: shell.exec params: working_dir: src silent: true script: | cat > mci.buildlogger </dev/null 2>&1 rm -rf src /data/db/* exit 0 post: - command: attach.results params: file_location: src/report.json - command: shell.exec params: silent: true script: | ${killall_mci|pkill -9 mongod; pkill -9 mongos; pkill -9 mongo; pkill -9 bsondump; pkill -9 mongoimport; pkill -9 mongoexport; pkill -9 mongodump; pkill -9 mongorestore; pkill -9 mongostat; pkill -9 mongofiles; pkill -9 mongooplog; pkill -9 mongotop; pkill -9 mongobridge; pkill -9 mongod-2.6; pkill -9 mongos-2.6; pkill -9 mongo-2.6; pkill -9 bsondump-2.6; pkill -9 mongoimport-2.6; pkill -9 mongoexport-2.6; pkill -9 mongodump-2.6; pkill -9 mongorestore-2.6; pkill -9 mongostat-2.6; pkill -9 mongofiles-2.6; pkill -9 mongooplog-2.6; pkill -9 mongotop-2.6; pkill -9 mongobridge-2.6; pkill -9 mongod-2.4; pkill -9 mongos-2.4; pkill -9 mongo-2.4; pkill -9 bsondump-2.4; pkill -9 mongoimport-2.4; pkill -9 mongoexport-2.4; pkill -9 mongodump-2.4; pkill -9 mongorestore-2.4; pkill -9 mongostat-2.4; pkill -9 mongofiles-2.4; pkill -9 mongooplog-2.4; pkill -9 mongotop-2.4; pkill -9 buildlogger.py; pkill -9 smoke.py; pkill -9 python; pkill -9 cl; pkill -9 lock_mgr_test; pkill -9 background_job_test; pkill -9 repl_coordinator_impl_heartbeat_test} >/dev/null 2>&1 exit 0 timeout: - command: shell.exec params: working_dir: src script: | echo "Calling the Hang_Analyzer." python ./buildscripts/hang_analyzer.py ### tasks to be run for the branch ### tasks: ## compile ## - name: compile depends_on: [] commands: - command: git.get_project params: directory: src - command: git.apply_patch params: directory: src - func: "get buildnumber" - func: "setup credentials" - func: "build new tools" #noop if ${newtools} is not "true" - func: "build rocksdb" # noop if ${build_rocksdb} is not "true" - command: shell.exec params: working_dir: src script: | set -o errexit set -o verbose rm -rf ${install_directory|/data/mongo-install-directory} ${scons|scons} ${compile_flags|} --use-new-tools all dist ${msi_target|} ${python|python} -c "ver = open('version.txt','r').read().strip(); print 'suffix: latest' if ver[-1] == '-' else 'suffix: ' + ver; print 'version: ' + ver" > compile_expansions.yml if [ "${has_debugsymbols|}" = "true" ]; then ${scons|scons} ${compile_flags|} --nostrip --use-new-tools dist; original_filename=$(ls | grep debugsymbols); mv $original_filename $(echo $original_filename | sed 's/debugsymbols-//' | sed 's/mongodb/debugsymbols-mongodb/'); fi ${asan_symbolizer} ${enable_lsan} ${python|python} buildscripts/smoke.py --with-cleanbb --mode files --from-file build/unittests.txt --dont-start-mongod --report-file report.json --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} core mv mongodb*.${ext|tgz} mongodb-binaries.tgz mv debugsymbols-*.${ext|tgz} mongo-debugsymbols.tgz || true - 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" exclude_files: - "*_test.pdb" - 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-master/${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: artifacts.tgz remote_file: mongodb-mongo-master/${build_variant}/${revision}/artifacts/${build_id}.tgz bucket: mciuploads permissions: public-read content_type: application/tar display_name: Artifacts - name: lint depends_on: [] commands: - command: git.get_project params: directory: src - command: git.apply_patch params: directory: src - command: shell.exec params: working_dir: src script: | set -o errexit set -o verbose ${scons|scons} ${compile_flags|} lint ## integration test suites ## - name: aggregation depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} aggregation - name: aggregation_auth depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --auth aggregation - name: aggregation_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger aggregation - name: audit depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} audit - name: audit_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger audit - name: auth depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} auth - name: auth_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger auth - name: dbtest depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${enable_lsan} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} dbtest - name: dbtest_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${enable_lsan} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger dbtest - name: disk depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} disk - name: durability depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} dur - name: failpoints depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} failPoint - name: failpoints_auth depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --auth failPoint - name: gle_auth depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} gle --auth - name: gle_auth_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger gle --auth - name: gle_auth_write_cmd depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} gle --auth --shell-write-mode commands - name: gle_auth_write_cmd_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger gle --auth --shell-write-mode commands - name: inMemoryExperiment depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --storageEngine=inMemoryExperiment --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} js - name: jsCore depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${enable_lsan} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --shell-write-mode commands --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} jsCore - name: jsCore_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${enable_lsan} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --shell-write-mode commands --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger jsCore - name: jsCore_compatibility depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${enable_lsan} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --shell-write-mode compatibility --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} jsCore - name: jsCore_compatibility_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${enable_lsan} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --shell-write-mode compatibility --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger jsCore - name: jsCore_auth depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --shell-write-mode commands --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --auth jsCore - name: jsCore_small_oplog depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${enable_lsan} ${python|python} buildscripts/smoke.py --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --shell-write-mode commands --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --small-oplog jsCore - name: jsCore_small_oplog_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${enable_lsan} ${python|python} buildscripts/smoke.py --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --shell-write-mode commands --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --small-oplog --storageEngine=wiredTiger jsCore - name: jsCore_small_oplog_rs depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${enable_lsan} ${python|python} buildscripts/smoke.py --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --shell-write-mode commands --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --small-oplog-rs jsCore - name: jsCore_small_oplog_rs_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${enable_lsan} ${python|python} buildscripts/smoke.py --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --shell-write-mode commands --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --small-oplog-rs --storageEngine=wiredTiger jsCore - name: mongo-perf depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . git clone git://github.com/mongodb/mongo-perf.git cd mongo-perf/mongo-cxx-driver && ${scons|scons} cd mongo-perf && ${scons|scons} cd mongo-perf && touch mongod.conf if [ "${build_variant|}" = "linux-64-new-query-framework" ] ; then cd mongo-perf && (echo "setParameter = newQueryFrameworkEnabled=1" | tee -a mongod.conf) fi cd mongo-perf && ${python|python} runner.py --config mongod.conf --rhost mongoperf-db.10gen.cc --port 30000 --mongod ../mongod --label ${build_variant|} - name: mmap depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} mmap_v1 - name: mongosTest depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} mongosTest - name: mongosTest_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger mongosTest - name: mongosTest_auth depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --auth mongosTest - name: multiversion depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . rm -rf /data/install /data/multiversion ${python|python} buildscripts/setup_multiversion_mongodb.py /data/install /data/multiversion "Linux/x86_64" "1.8" "2.0" "2.2" "2.4" "2.6" "3.0" PATH=$PATH:/data/multiversion ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} multiVersion - name: noPassthrough depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} noPassthrough - name: noPassthrough_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger noPassthrough - name: noPassthroughWithMongod depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} noPassthroughWithMongod - name: noPassthroughWithMongod_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger noPassthroughWithMongod - name: slow1 depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} slow1 - name: slow1_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger slow1 - name: slow2 depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec timeout_secs: 10800 params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --clean-every=1 --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} slow2 - name: slow2_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec timeout_secs: 10800 params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --clean-every=1 --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger slow2 - name: parallel depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} parallel - name: parallel_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger --wiredTigerEngineConfig=cache_size=1G parallel - name: parallel_compatibility depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --shell-write-mode compatibility --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} parallel - name: parallel_compatibility_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --shell-write-mode compatibility --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger --wiredTigerEngineConfig=cache_size=1G parallel - name: concurrency depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} concurrency - name: concurrency_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger --wiredTigerEngineConfig=cache_size=1G concurrency - name: concurrency_compatibility depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --shell-write-mode compatibility --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} concurrency - name: concurrency_compatibility_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --shell-write-mode compatibility --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger --wiredTigerEngineConfig=cache_size=1G concurrency - name: replicasets depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} replSets - name: replicasets_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger replSets - name: replicasets_auth depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --auth replSets - name: replication depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} repl - name: replication_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger repl - name: replication_auth depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --auth repl - name: sasl depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} sasl - name: sharding depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} sharding - name: sharding_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger sharding - name: sharding_auth depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --auth sharding - name: snmp depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . mkdir -p snmpconf cp -f src/mongo/db/modules/enterprise/docs/mongod.conf.master snmpconf/mongod.conf SNMPCONFPATH=snmpconf ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} snmp - name: snmp_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . mkdir -p snmpconf cp -f src/mongo/db/modules/enterprise/docs/mongod.conf.master snmpconf/mongod.conf SNMPCONFPATH=snmpconf ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger snmp - name: ssl depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} ssl --use-ssl - name: sslSpecial depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} sslSpecial - name: tool depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} tool - name: tool_WT depends_on: - name: compile commands: - func: "fetch artifacts" - func: "fetch binaries" - func: "extract binaries" - func: "setup credentials" - func: "get buildnumber" - command: shell.exec params: working_dir: src script: | cp mongodb*/bin/* . ${asan_symbolizer} ${python|python} buildscripts/smoke.py --nopreallocj --with-cleanbb --mongod ./mongod --mongo ./mongo --report-file report.json ${test_flags|} --buildlogger-url ${logger_url|http://buildlogs.mongodb.org/} --buildlogger-builder MCI_${build_variant} --buildlogger-buildnum ${builder_num|} --buildlogger-credentials ./mci.buildlogger --buildlogger-phase ${task_name}_${execution} --storageEngine=wiredTiger tool - name: push depends_on: - name: "*" stepback: false commands: - func: "fetch artifacts" - func: "fetch binaries" - command: expansions.update params: file: src/compile_expansions.yml - func: "fetch debugsymbols archive" - command: shell.exec params: working_dir: src silent: true script: | set -o errexit echo "${signing_auth_token}" > signing_auth_token - command: shell.exec params: working_dir: src script: | set -o errexit set -o verbose mv mongo-binaries.tgz mongodb-binaries.${ext|tgz} mv mongo-debugsymbols.tgz debugsymbols-*.${ext|tgz} || true cp mongodb-*.${ext|tgz} mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz} cp debugsymbols-*.${ext|tgz} mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz} || true /usr/bin/find build/ -type f | grep msi$ | xargs -I original_filename cp original_filename mongodb-win32-${push_arch}-${suffix}.msi || true notary-client.py --key-name "server-2.8" --auth-token-file ./signing_auth_token --comment "MCI 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-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz} mongodb-win32-${push_arch}-${suffix}.msi rm signing_auth_token # 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 debug symbols - command: s3.put params: aws_secret: ${aws_secret} aws_key: ${aws_key} build_variants: ["enterprise-linux-64-amazon-ami", "enterprise-rhel-57-64-bit", "enterprise-rhel-62-64-bit", "enterprise-rhel-70-64-bit", "enterprise-suse11-64", "enterprise-ubuntu1204-64", "enterprise-ubuntu1404-64", "enterprise-debian71-64", "linux-32", "linux-64", "amazon", "rhel55", "rhel62", "rhel70", "suse11", "ubuntu1204", "ubuntu1404", "debian71", "solaris-64-bit"] 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 debug symbols signature - command: s3.put params: aws_secret: ${aws_secret} aws_key: ${aws_key} build_variants: ["enterprise-linux-64-amazon-ami", "enterprise-rhel-57-64-bit", "enterprise-rhel-62-64-bit", "enterprise-rhel-70-64-bit", "enterprise-suse11-64", "enterprise-ubuntu1204-64", "enterprise-ubuntu1404-64", "enterprise-debian71-64", "linux-32", "linux-64", "amazon", "rhel55", "rhel62", "rhel70", "suse11", "ubuntu1204", "ubuntu1404", "debian71", "solaris-64-bit"] 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", "windows-32"] 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 debug symbols sha1 - command: s3.put params: aws_secret: ${aws_secret} aws_key: ${aws_key} build_variants: ["enterprise-linux-64-amazon-ami", "enterprise-rhel-57-64-bit", "enterprise-rhel-62-64-bit", "enterprise-rhel-70-64-bit", "enterprise-suse11-64", "enterprise-ubuntu1204-64", "enterprise-ubuntu1404-64", "enterprise-debian71-64", "linux-32", "linux-64", "amazon", "rhel55", "rhel62", "rhel70", "suse11", "ubuntu1204", "ubuntu1404", "debian71", "solaris-64-bit"] 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", "windows-32"] 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 debug symbols sha256 - command: s3.put params: aws_secret: ${aws_secret} build_variants: ["enterprise-linux-64-amazon-ami", "enterprise-rhel-57-64-bit", "enterprise-rhel-62-64-bit", "enterprise-rhel-70-64-bit", "enterprise-suse11-64", "enterprise-ubuntu1204-64", "enterprise-ubuntu1404-64", "enterprise-debian71-64", "linux-32", "linux-64", "amazon", "rhel55", "rhel62", "rhel70", "suse11", "ubuntu1204", "ubuntu1404", "debian71", "solaris-64-bit"] 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", "windows-32"] 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 debug symbols md5 - command: s3.put params: aws_key: ${aws_key} aws_secret: ${aws_secret} build_variants: ["enterprise-linux-64-amazon-ami", "enterprise-rhel-57-64-bit", "enterprise-rhel-62-64-bit", "enterprise-rhel-70-64-bit", "enterprise-suse11-64", "enterprise-ubuntu1204-64", "enterprise-ubuntu1404-64", "linux-32", "linux-64", "amazon", "rhel55", "rhel62", "rhel70", "suse11", "ubuntu1204", "ubuntu1404", "debian71", "solaris-64-bit"] 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", "windows-32"] 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}'}} #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': ['enterprise-linux-64-amazon-ami', 'enterprise-rhel-57-64-bit', 'enterprise-rhel-62-64-bit', 'enterprise-suse11-64', 'enterprise-ubuntu1204-64', 'enterprise-ubuntu1404-64', 'enterprise-debian71-64', 'linux-32', 'linux-64', 'amazon', 'rhel55', 'rhel62', 'rhel70', 'suse11', 'ubuntu1204', 'ubuntu1404', 'debian71', 'solaris-64-bit'] } #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', 'windows-32' ] } #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}'}} #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': ['enterprise-linux-64-amazon-ami', 'enterprise-rhel-57-64-bit', 'enterprise-rhel-62-64-bit', 'enterprise-suse11-64', 'enterprise-ubuntu1204-64', 'enterprise-ubuntu1404-64', 'enterprise-debian71-64', 'linux-32', 'linux-64', 'amazon', 'rhel55', 'rhel62', 'rhel70', 'suse11', 'ubuntu1204', 'ubuntu1404', 'debian71', 'solaris-64-bit'] } #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 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': [ 'enterprise-linux-64-amazon-ami', 'enterprise-rhel-57-64-bit', 'enterprise-rhel-62-64-bit', 'enterprise-suse11-64', 'enterprise-ubuntu1204-64', 'enterprise-ubuntu1404-64', 'enterprise-debian71-64', 'linux-32', 'linux-64', 'amazon', 'rhel55', 'rhel62', 'rhel70', 'suse11', 'ubuntu1204', 'ubuntu1404', 'debian71', 'solaris-64-bit' ] } #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', 'windows-32'] } #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 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': [ 'enterprise-linux-64-amazon-ami', 'enterprise-rhel-57-64-bit', 'enterprise-rhel-62-64-bit', 'enterprise-suse11-64', 'enterprise-ubuntu1204-64', 'enterprise-ubuntu1404-64', 'enterprise-debian71-64', 'linux-32', 'linux-64', 'amazon', 'rhel55', 'rhel62', 'rhel70', 'suse11', 'ubuntu1204', 'ubuntu1404', 'debian71', 'solaris-64-bit' ]} #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', 'windows-32'], } #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 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': [ 'enterprise-linux-64-amazon-ami', 'enterprise-rhel-57-64-bit', 'enterprise-rhel-62-64-bit', 'enterprise-suse11-64', 'enterprise-ubuntu1204-64', 'enterprise-ubuntu1404-64', 'linux-32', 'linux-64', 'amazon', 'rhel55', 'rhel62', 'rhel70', 'suse11', 'ubuntu1204', 'ubuntu1404', 'debian71', 'solaris-64-bit'] } #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', 'windows-32'], } - command: shell.exec params: working_dir: src script: | ssh distro-deb2.build.10gen.cc sudo -H -u ubuntu /home/ubuntu/git/kernel-tools/releases/publish_packages/publish_packages.sh master ${version} ${revision} || true ### modules ### modules: - name: enterprise repo: git@github.com:10gen/mongo-enterprise-modules.git prefix: src/mongo/db/modules branch: master - name: rocksdb repo: git@github.com:mongodb-partners/mongo-rocks.git prefix: src/mongo/db/modules branch: master ####################################### # Buildvariants ####################################### buildvariants: ########################################### # Linux buildvariants # ########################################### - name: linux-64 display_name: Linux 64-bit modules: ~ run_on: - rhel55 - rhel55-test expansions: gitvars: LD_LIBRARY_PATH=/opt/openssl/lib64 #needed to workaround the old openSSL on rhel55 builders. gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" 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/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --release --variant-dir="linux2/release" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - rhel55 - name: lint - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: inMemoryExperiment - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: mongosTest_auth - name: multiversion - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replicasets_auth - name: replication - name: replication_WT - name: replication_auth - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: tool - name: tool_WT - name: push distros: - rhel55-test - name: linux-64-debug display_name: Linux 64-bit DEBUG modules: ~ run_on: - rhel55 - rhel55-test expansions: gitvars: LD_LIBRARY_PATH=/opt/openssl/lib64 #needed to workaround the old openSSL on rhel55 builders. gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" push_path: linux push_bucket: downloads.mongodb.org push_name: linux-debug push_arch: x86_64 logger_url: "http://buildlogger-test-2014121502-1.10gen-mci.4085.mongodbdns.com:8080/" test_flags: --continue-on-failure compile_flags: --dbg=on --opt=on -j$(grep -c ^processor /proc/cpuinfo) --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/dbg_on/opt_on" has_debugsymbols: true tasks: - name: compile distros: - rhel55 - name: aggregation - name: aggregation_WT - name: aggregation_auth - 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: mmap - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mongosTest - name: mongosTest_WT - name: mongosTest_auth - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replicasets_auth - name: replication - name: replication_WT - name: replication_auth - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: tool - name: tool_WT - name: linux-64-duroff display_name: Linux 64-bit DUR OFF modules: ~ run_on: - rhel55 - rhel55-test expansions: gitvars: LD_LIBRARY_PATH=/opt/openssl/lib64 #needed to workaround the old openSSL on rhel55 builders. gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" 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/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/durableDefaultOff" has_debugsymbols: true test_flags: --continue-on-failure --nojournal tasks: - name: compile distros: - rhel55 - name: aggregation - name: aggregation_auth - name: auth - name: dbtest - name: disk - name: durability - name: failpoints - name: failpoints_auth - name: jsCore - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_small_oplog - name: jsCore_small_oplog_rs - name: mongosTest - name: mmap - name: mongosTest_auth - name: noPassthrough - name: noPassthroughWithMongod - name: parallel - name: parallel_compatibility - name: concurrency - name: concurrency_compatibility - name: replicasets - name: replicasets_auth - name: replication - name: replication_auth - name: sharding - name: sharding_auth - name: slow1 - name: slow2 - name: tool - name: linux-64-lsm stepback: false display_name: Linux 64-bit LSM run_on: - rhel55 - rhel55-test expansions: gitvars: LD_LIBRARY_PATH=/opt/openssl/lib64 #needed to workaround the old openSSL on rhel55 builders. gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" compile_flags: -j$(grep -c ^processor /proc/cpuinfo) --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --release --variant-dir="linux2/release" test_flags: --continue-on-failure --wiredTigerCollectionConfig=type=lsm --wiredTigerIndexConfig=type=lsm tasks: - name: compile distros: - rhel55 - name: aggregation_WT - name: auth_WT - name: dbtest_WT - name: gle_auth_WT - name: gle_auth_write_cmd_WT - name: jsCore_WT - name: jsCore_compatibility_WT - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs_WT - name: mongosTest_WT - name: noPassthrough_WT - name: noPassthroughWithMongod_WT - name: parallel_WT - name: parallel_compatibility_WT - name: concurrency_WT - name: concurrency_compatibility_WT - name: replicasets_WT - name: replication_WT - name: sharding_WT - name: slow1_WT - name: slow2_WT - name: tool_WT - name: ubuntu1204 display_name: SSL Ubuntu 1204 64-bit modules: ~ run_on: - ubuntu1204-test expansions: tooltags: "-tags ssl" push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-ubuntu1204 compile_flags: --ssl --distmod=ubuntu1204 -j$(grep -c ^processor /proc/cpuinfo) --release --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - ubuntu1204-build - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mongosTest - name: mongosTest_WT - name: mmap - name: mongosTest_auth - name: multiversion - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replicasets_auth - name: replication - name: replication_WT - name: replication_auth - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: push distros: - rhel55-test - name: ubuntu1404 display_name: SSL Ubuntu 1404 64-bit modules: ~ run_on: - ubuntu1404-test expansions: tooltags: "-tags ssl" push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-ubuntu1404 compile_flags: --ssl --distmod=ubuntu1404 -j$(grep -c ^processor /proc/cpuinfo) --release --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile 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: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: mongosTest_auth - name: multiversion - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replicasets_auth - name: replication - name: replication_WT - name: replication_auth - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: push distros: - rhel55-test - name: enterprise-linux-64-amazon-ami display_name: Enterprise Linux 64-bit Amazon AMI modules: - enterprise run_on: - linux-64-amzn-test expansions: tooltags: "-tags 'ssl sasl'" push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-amzn64 compile_flags: --ssl --ssl-fips-capability --distmod=amzn64 --release -j$(grep -c ^processor /proc/cpuinfo) --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --authMechanism=SCRAM-SHA-1 --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - linux-64-amzn-build - name: aggregation_auth - name: audit - name: audit_WT - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: failpoints_auth - name: jsCore_auth - name: mmap - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: replicasets_auth - name: replication_auth - name: sasl - name: sharding_auth - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: push distros: - rhel55-test - name: amazon display_name: SSL Amazon 64-bit modules: ~ run_on: - linux-64-amzn-test expansions: tooltags: "-tags 'ssl'" push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-amazon compile_flags: --ssl --distmod=amazon -j$(grep -c ^processor /proc/cpuinfo) --release --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile 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: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: mongosTest_auth - name: multiversion - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replicasets_auth - name: replication - name: replication_WT - name: replication_auth - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: push distros: - rhel55-test - name: linux-32 display_name: Linux 32-bit modules: ~ run_on: - rhel55-32 expansions: gitvars: LD_LIBRARY_PATH=/opt/openssl/lib64 #needed to workaround the old openSSL on rhel55 builders. gorootvars: GOROOT=/opt/go32 PATH=/opt/go32/bin:$PATH push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: i686 compile_flags: --release --distarch=i686 -j$(grep -c ^processor /proc/cpuinfo) --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" --wiredtiger=off CCFLAGS="-m32" LINKFLAGS="-m32" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - rhel55 - name: aggregation - name: auth - name: dbtest - name: disk - name: durability - name: failpoints - name: jsCore - name: jsCore_compatibility - name: mmap - name: mongosTest - name: replicasets - name: replication - name: sharding - name: tool - name: push distros: - rhel55-test - name: linux-32-debug display_name: Linux 32-bit DEBUG modules: ~ run_on: - rhel55-32 expansions: gitvars: LD_LIBRARY_PATH=/opt/openssl/lib64 #needed to workaround the old openSSL on rhel55 builders. gorootvars: GOROOT=/opt/go32 PATH=/opt/go32/bin:$PATH push_path: linux push_bucket: downloads.mongodb.org push_name: linux-debug push_arch: i686 test_flags: --continue-on-failure has_debugsymbols: true compile_flags: --dbg=on --distarch=i686 --opt=on -j$(grep -c ^processor /proc/cpuinfo) --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/debug" --wiredtiger=off CCFLAGS="-m32" LINKFLAGS="-m32" tasks: - name: compile distros: - rhel55 - name: aggregation - name: auth - name: dbtest - name: disk - name: durability - name: failpoints - name: jsCore - name: jsCore_compatibility - name: mmap - name: mongosTest - name: replicasets - name: replication - name: sharding - name: tool ########################################### # Windows buildvariants # ########################################### - name: windows-64 display_name: Windows 64-bit modules: ~ run_on: - windows-64-vs2013-test expansions: 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) test_flags: --continue-on-failure ext: zip tasks: - name: compile distros: - windows-64-vs2013-compile - 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: jsCore - name: jsCore_WT - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replication - name: replication_WT - name: sharding - name: sharding_WT - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: tool - name: tool_WT - name: push distros: - rhel55-test - name: windows-64-2k8 display_name: Windows 64-bit 2008R2+ modules: ~ run_on: - windows-64-vs2013-test expansions: exe: ".exe" push_path: win32 push_bucket: downloads.mongodb.org push_name: win32 push_arch: x86_64-2008plus msi_target: msi content_type: application/zip compile_flags: --release --win-version-min=ws08r2 -j$(grep -c ^processor /proc/cpuinfo) --distmod=2008plus test_flags: --continue-on-failure ext: zip tasks: - name: compile distros: - windows-64-vs2013-compile - 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_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replication - name: replication_WT - name: sharding - name: sharding_WT - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: tool - name: tool_WT - name: push distros: - rhel55-test - name: windows-64-2k8-debug display_name: Windows 64-bit 2008R2+ DEBUG modules: ~ run_on: - windows-64-vs2013-test expansions: exe: ".exe" push_path: win32 push_bucket: downloads.mongodb.org push_name: win32-debug push_arch: x86_64-2008plus content_type: application/zip test_flags: --continue-on-failure compile_flags: --dbg=on --opt=on --win-version-min=ws08r2 -j$(grep -c ^processor /proc/cpuinfo) --distmod=2008plus ext: zip tasks: - name: compile distros: - windows-64-vs2013-compile - 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_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replication - name: replication_WT - name: sharding - name: sharding_WT - name: tool - name: tool_WT - name: enterprise-windows-64 display_name: Enterprise Windows 64-bit modules: - enterprise run_on: - windows-64-vs2013-test expansions: tooltags: "-tags 'ssl sasl'" exe: ".exe" gorootvars: 'PATH="/cygdrive/c/mingw-w64/x86_64-4.9.1-posix-seh-rt_v3-rev1/mingw64/bin:/cygdrive/c/sasl/:$PATH"' 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 --ssl-fips-capability --distmod=windows-64 CPPPATH="c:/openssl/include c:/sasl/include c:/snmp/include" LIBPATH="c:/openssl/lib c:/sasl/lib c:/snmp/lib" -j$(grep -c ^processor /proc/cpuinfo) --dynamic-windows --win-version-min=ws08r2 --variant-dir=win32 test_flags: --continue-on-failure ext: zip tasks: - name: compile distros: - windows-64-vs2013-compile - name: audit - name: audit_WT - name: dbtest - name: dbtest_WT - name: jsCore_auth - name: mmap - name: replicasets_auth - name: sasl - name: sharding_auth - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: push distros: - rhel55-test - name: windows-64-2k8-ssl display_name: SSL Windows 64-bit 2008R2+ modules: ~ run_on: - windows-64-vs2013-test expansions: exe: ".exe" gorootvars: 'PATH="/cygdrive/c/mingw-w64/x86_64-4.9.1-posix-seh-rt_v3-rev1/mingw64/bin:/cygdrive/c/sasl/:$PATH"' tooltags: "-tags ssl" 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 --distmod=2008plus-ssl CPPPATH="c:/openssl/include" LIBPATH="c:/openssl/lib" -j$(grep -c ^processor /proc/cpuinfo) --dynamic-windows --win-version-min=ws08r2 test_flags: --continue-on-failure ext: zip tasks: - name: compile distros: - windows-64-vs2013-compile - 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_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replication - name: replication_WT - name: sharding - name: sharding_WT - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: tool - name: tool_WT - name: ssl - name: sslSpecial - name: push distros: - rhel55-test - name: windows-32 display_name: Windows 32-bit modules: ~ run_on: - windows-32 expansions: exe: ".exe" gorootvars: GOARCH=386 push_path: win32 push_bucket: downloads.mongodb.org push_name: win32 push_arch: i386 msi_target: msi content_type: application/zip compile_flags: --release -j$(grep -c ^processor /proc/cpuinfo) --wiredtiger=off TARGET_ARCH=i386 test_flags: --continue-on-failure ext: zip tasks: - name: compile distros: - windows-64-vs2013-compile - name: aggregation - name: auth - name: dbtest - name: disk - name: durability - name: failpoints - name: jsCore - name: jsCore_compatibility - name: mmap - name: mongosTest - name: replicasets - name: replication - name: sharding - name: tool - name: push distros: - rhel55-test ########################################### # OSX buildvariants # ########################################### - name: osx-108 display_name: OS X 10.8 modules: ~ run_on: - osx-108 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.7 --libc++ test_flags: --continue-on-failure tasks: - name: compile - 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: jsCore - name: jsCore_WT - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replication - name: replication_WT - name: sharding - name: sharding_WT - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: tool - name: tool_WT - name: push distros: - rhel55-test - name: osx-108-debug display_name: OS X 10.8 DEBUG modules: ~ run_on: - osx-108 expansions: push_path: osx push_bucket: downloads.mongodb.org push_name: osx-debug push_arch: x86_64 test_flags: --continue-on-failure compile_flags: --dbg=on --opt=on --allocator=system -j$(sysctl -n hw.logicalcpu) --osx-version-min=10.7 --libc++ tasks: - name: compile - 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: mmap - name: mongosTest - name: mongosTest_WT - name: replicasets - name: replicasets_WT - name: replication - name: replication_WT - name: sharding - name: sharding_WT - name: tool - name: tool_WT ########################################### # Redhat buildvariants # ########################################### - name: enterprise-rhel-57-64-bit display_name: Enterprise RHEL 5.7 64-bit modules: - enterprise run_on: - rhel57-test expansions: gitvars: LD_LIBRARY_PATH=/opt/openssl/lib64 #needed to workaround the old openSSL on rhel55 builders. gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" tooltags: "-tags 'ssl sasl'" push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-rhel57 compile_flags: --ssl --ssl-fips-capability --distmod=rhel57 -j$(grep -c ^processor /proc/cpuinfo) --release --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - rhel55 - name: audit - name: audit_WT - name: dbtest - name: dbtest_WT - name: jsCore_auth - name: mmap - name: replicasets_auth - name: sasl - name: sharding_auth - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: push distros: - rhel55-test - name: enterprise-rhel-62-64-bit display_name: Enterprise RHEL 6.2 64-bit modules: - enterprise run_on: - rhel62-test expansions: gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" tooltags: "-tags 'ssl sasl'" push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-rhel62 compile_flags: --ssl --ssl-fips-capability --distmod=rhel62 -j$(grep -c ^processor /proc/cpuinfo) --release --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - rhel62-build - name: audit - name: audit_WT - name: dbtest - name: dbtest_WT - name: mmap - name: jsCore_auth - name: replicasets_auth - name: sasl - name: sharding_auth - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: push distros: - rhel55-test - name: enterprise-rhel-70-64-bit display_name: Enterprise RHEL 7.0 64-bit modules: - enterprise run_on: - rhel70 expansions: gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" tooltags: "-tags 'ssl sasl'" push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-rhel70 compile_flags: --ssl --ssl-fips-capability --distmod=rhel70 -j$(grep -c ^processor /proc/cpuinfo) --release --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile - name: audit - name: audit_WT - name: dbtest - name: dbtest_WT - name: jsCore_auth - name: mmap - name: replicasets_auth - name: sasl - name: sharding_auth - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: push distros: - rhel55-test - name: rhel55 display_name: SSL RHEL 5.5 64-bit modules: ~ run_on: - rhel55 - rhel55-test expansions: gitvars: LD_LIBRARY_PATH=/opt/openssl/lib64 #needed to workaround the old openSSL on rhel55 builders. gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" tooltags: "-tags 'ssl sasl'" push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-rhel55 compile_flags: --ssl --distmod=rhel55 -j$(grep -c ^processor /proc/cpuinfo) --release --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - rhel55 - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: mongosTest_auth - name: multiversion - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replicasets_auth - name: replication - name: replication_WT - name: replication_auth - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: push distros: - rhel55-test - name: rhel62 display_name: SSL RHEL 6.2 64-bit modules: ~ run_on: - rhel62-test expansions: gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" tooltags: "-tags ssl" push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-rhel62 compile_flags: --ssl --distmod=rhel62 -j$(grep -c ^processor /proc/cpuinfo) --release --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - rhel62-build - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: mongosTest_auth - name: multiversion - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replicasets_auth - name: replication - name: replication_WT - name: replication_auth - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: push distros: - rhel55-test - name: rhel70 display_name: SSL RHEL 7.0 64-bit modules: ~ run_on: - rhel70 expansions: gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" tooltags: "-tags ssl" push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-rhel70 compile_flags: --ssl --distmod=rhel70 -j$(grep -c ^processor /proc/cpuinfo) --release --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile 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: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: mongosTest_auth - name: multiversion - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replicasets_auth - name: replication - name: replication_WT - name: replication_auth - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: push distros: - rhel55-test ########################################### # Ubuntu buildvariants # ########################################### - name: enterprise-ubuntu1204-64 display_name: Enterprise Ubuntu 1204 64-bit modules: - enterprise run_on: - ubuntu1204-test expansions: gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" tooltags: "-tags 'ssl sasl'" push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-ubuntu1204 compile_flags: --ssl --ssl-fips-capability --distmod=ubuntu1204 --release -j$(grep -c ^processor /proc/cpuinfo) --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --authMechanism=SCRAM-SHA-1 --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - ubuntu1204-build - name: audit - name: audit_WT - name: dbtest - name: dbtest_WT - name: jsCore_auth - name: mmap - name: replicasets_auth - name: sasl - name: sharding_auth - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: push distros: - rhel55-test - name: enterprise-ubuntu1404-64 display_name: Enterprise Ubuntu 1404 64-bit modules: - enterprise run_on: - ubuntu1404-test expansions: gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" tooltags: "-tags 'ssl sasl'" push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-ubuntu1404 compile_flags: --ssl --ssl-fips-capability --distmod=ubuntu1404 --release -j$(grep -c ^processor /proc/cpuinfo) --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --authMechanism=SCRAM-SHA-1 --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - ubuntu1404-build - name: audit - name: audit_WT - name: dbtest - name: dbtest_WT - name: jsCore_auth - name: mmap - name: replicasets_auth - name: sasl - name: sharding_auth - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: push distros: - rhel55-test ########################################### # SUSE buildvariants # ########################################### - name: enterprise-suse11-64 display_name: Enterprise SUSE 11 64-bit modules: - enterprise run_on: - suse11-test expansions: gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" tooltags: "-tags 'ssl sasl'" push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-suse11 compile_flags: --ssl --ssl-fips-capability --distmod=suse11 --release -j$(grep -c ^processor /proc/cpuinfo) --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --authMechanism=SCRAM-SHA-1 --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - suse11-build - name: audit - name: audit_WT - name: dbtest - name: dbtest_WT - name: jsCore_auth - name: replicasets_auth - name: sasl - name: sharding_auth - name: mmap - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: push distros: - rhel55-test - name: suse11 display_name: SSL SUSE 11 64-bit modules: ~ run_on: - suse11-test expansions: gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" tooltags: "-tags ssl" push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-suse11 compile_flags: --ssl --distmod=suse11 -j$(grep -c ^processor /proc/cpuinfo) --release --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - suse11-build - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: mongosTest_auth - name: multiversion - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replicasets_auth - name: replication - name: replication_WT - name: replication_auth - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: push distros: - rhel55-test ########################################### # Solaris buildvariants # ########################################### - name: solaris-64-bit display_name: Solaris 64-bit modules: ~ run_on: - solaris expansions: push_path: sunos5 push_bucket: downloads.mongodb.org push_name: sunos5 push_arch: x86_64 compile_flags: --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ -j$(kstat cpu | sort -u | grep -c "^module") --release CCFLAGS="-m64" LINKFLAGS="-m64 -static-libstdc++ -static-libgcc" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile - name: aggregation - name: auth - name: dbtest - name: disk - name: durability - name: failpoints - name: jsCore - name: jsCore_compatibility - name: jsCore_small_oplog - name: jsCore_small_oplog_rs - name: mmap - name: mongosTest - name: noPassthrough - name: noPassthroughWithMongod - name: parallel - name: parallel_compatibility - name: concurrency - name: concurrency_compatibility - name: replicasets - name: replication - name: sharding - name: slow1 - name: slow2 - name: tool - name: push distros: - rhel55-test ########################################### # Debian buildvariants # ########################################### - name: enterprise-debian71-64 display_name: Enterprise Debian 7.1 64-bit modules: - enterprise run_on: - debian71-test expansions: gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" tooltags: "-tags 'ssl sasl'" push_path: linux push_bucket: downloads.10gen.com push_name: linux push_arch: x86_64-enterprise-debian71 compile_flags: --ssl --ssl-fips-capability --distmod=debian71 --release -j$(grep -c ^processor /proc/cpuinfo) --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --authMechanism=SCRAM-SHA-1 --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - debian71-build - name: audit - name: audit_WT - name: dbtest - name: dbtest_WT - name: jsCore_auth - name: mmap - name: replicasets_auth - name: sasl - name: sharding_auth - name: snmp - name: snmp_WT - name: ssl - name: sslSpecial - name: push distros: - rhel55-test - name: debian71 display_name: SSL Debian 7.1 64-bit modules: ~ run_on: - debian71-test expansions: gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH" tooltags: "-tags ssl" push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-debian71 compile_flags: --ssl --distmod=debian71 -j$(grep -c ^processor /proc/cpuinfo) --release --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir="linux2/release" test_flags: --continue-on-failure has_debugsymbols: true tasks: - name: compile distros: - debian71-build - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: mongosTest_auth - name: multiversion - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replicasets_auth - name: replication - name: replication_WT - name: replication_auth - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: push distros: - rhel55-test ############################################## # mongo-partner storage engine buildvariants # ############################################## - name: ubuntu1404-rocksdb display_name: Ubuntu 14.04 64-bit (RocksDB) modules: - rocksdb run_on: - ubuntu1404-test expansions: build_rocksdb: true compile_flags: -j$(grep -c ^processor /proc/cpuinfo) --dbg=off --opt=on CPPPATH=$(readlink -f ../rocksdb/include/) LIBPATH=$(readlink -f ../rocksdb/) LIBS=rocksdb --cc=/opt/mongodbtoolchain/bin/gcc --cxx=/opt/mongodbtoolchain/bin/g++ --variant-dir=release test_flags: --continue-on-failure --storageEngine=rocksdb tasks: - name: compile distros: - ubuntu1404-build # - name: lint - name: aggregation - name: aggregation_auth - name: auth - name: dbtest # - name: disk # - name: durability - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_write_cmd - name: jsCore - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_small_oplog - name: noPassthrough - name: noPassthroughWithMongod - name: parallel - name: parallel_compatibility - name: concurrency - name: concurrency_compatibility - name: replicasets - name: replicasets_auth - name: replication - name: replication_auth - name: sharding - name: sharding_auth - name: slow1 - name: slow2 ########################################### # Experimental buildvariants # ########################################### - name: ubuntu1404-debug-asan display_name: z ASAN SSL Ubuntu 1404 64-bit DEBUG run_on: - ubuntu1404-test stepback: false batchtime: 1440 # 3.5 days expansions: tooltags: "-tags 'ssl'" asan_symbolizer: ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer-3.4 enable_lsan: LSAN_OPTIONS="suppressions=etc/lsan.suppressions" ASAN_OPTIONS=detect_leaks=1 compile_flags: --cc=/usr/bin/clang --cxx=/usr/bin/clang++ --dbg=on --opt=on --allocator=system --sanitize=address --ssl -j$(grep -c ^processor /proc/cpuinfo) --nostrip --variant-dir=build test_flags: --continue-on-failure tasks: - name: compile 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: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: mongosTest_auth - name: multiversion - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replicasets_auth - name: replication - name: replication_WT - name: replication_auth - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: ubuntu1410-fast-clang display_name: z Clang/libc++ Ubuntu 1410 64-bit SSL run_on: - ubuntu1410-test stepback: false expansions: tooltags: "-tags 'ssl'" compile_flags: --cc=/usr/bin/clang --cxx=/usr/bin/clang++ --libc++ --ssl -j$(grep -c ^processor /proc/cpuinfo) --variant-dir=build --distmod=ubuntu1410-clang test_flags: --continue-on-failure push_path: linux push_bucket: downloads.mongodb.org push_name: linux push_arch: x86_64-ubuntu1410-clang tasks: - name: compile distros: - ubuntu1410-build - name: aggregation - name: aggregation_WT - name: aggregation_auth - name: auth - name: auth_WT - name: dbtest - name: dbtest_WT - name: disk - name: durability - name: failpoints - name: failpoints_auth - name: gle_auth - name: gle_auth_WT - name: gle_auth_write_cmd - name: gle_auth_write_cmd_WT - name: jsCore - name: jsCore_WT - name: jsCore_auth - name: jsCore_compatibility - name: jsCore_compatibility_WT - name: jsCore_small_oplog - name: jsCore_small_oplog_WT - name: jsCore_small_oplog_rs - name: jsCore_small_oplog_rs_WT - name: mmap - name: mongosTest - name: mongosTest_WT - name: mongosTest_auth - name: multiversion - name: noPassthrough - name: noPassthrough_WT - name: noPassthroughWithMongod - name: noPassthroughWithMongod_WT - name: parallel - name: parallel_WT - name: parallel_compatibility - name: parallel_compatibility_WT - name: concurrency - name: concurrency_WT - name: concurrency_compatibility - name: concurrency_compatibility_WT - name: replicasets - name: replicasets_WT - name: replicasets_auth - name: replication - name: replication_WT - name: replication_auth - name: sharding - name: sharding_WT - name: sharding_auth - name: slow1 - name: slow1_WT - name: slow2 - name: slow2_WT - name: ssl - name: sslSpecial - name: tool - name: tool_WT - name: push distros: - rhel55-test