SERVER-21952 Do not run jstestfuzz with --continueOnFailure
This commit is contained in:
parent
e49a2a16fb
commit
0543286571
@ -48,6 +48,7 @@ variables:
|
||||
vars:
|
||||
resmoke_args: --help # resmoke_args needs to be overridden to specify one of the jstestfuzz suites
|
||||
should_shuffle: false
|
||||
continue_on_failure: false
|
||||
|
||||
# Used for tests that invoke 'resmoke.py --suites=jstestfuzz*'.
|
||||
- &jstestfuzz_template
|
||||
@ -281,6 +282,10 @@ functions:
|
||||
extra_args="$extra_args --shuffle"
|
||||
fi
|
||||
|
||||
if [ ${continue_on_failure|true} = true ]; then
|
||||
extra_args="$extra_args --continueOnFailure"
|
||||
fi
|
||||
|
||||
${path_prefix} ${asan_symbolizer} ${enable_lsan} ${rlp_environment} ${python|python} buildscripts/resmoke.py ${resmoke_args} $extra_args ${test_flags} --log=buildlogger --reportFile=report.json
|
||||
|
||||
"run jstestfuzz":
|
||||
@ -592,6 +597,7 @@ tasks:
|
||||
vars:
|
||||
resmoke_args: --suites=jstestfuzz --storageEngine=mmapv1
|
||||
should_shuffle: false
|
||||
continue_on_failure: false
|
||||
|
||||
## jstestfuzz WT ##
|
||||
- <<: *jstestfuzz_template
|
||||
@ -603,6 +609,7 @@ tasks:
|
||||
vars:
|
||||
resmoke_args: --suites=jstestfuzz --storageEngine=wiredTiger
|
||||
should_shuffle: false
|
||||
continue_on_failure: false
|
||||
|
||||
## jstestfuzz replica set ##
|
||||
- <<: *jstestfuzz_template
|
||||
@ -614,6 +621,7 @@ tasks:
|
||||
vars:
|
||||
resmoke_args: --suites=jstestfuzz_replication --storageEngine=wiredTiger
|
||||
should_shuffle: false
|
||||
continue_on_failure: false
|
||||
|
||||
## jstestfuzz sharded cluster ##
|
||||
- <<: *jstestfuzz_template
|
||||
@ -625,6 +633,7 @@ tasks:
|
||||
vars:
|
||||
resmoke_args: --suites=jstestfuzz_sharded --storageEngine=wiredTiger
|
||||
should_shuffle: false
|
||||
continue_on_failure: false
|
||||
|
||||
## unit tests ##
|
||||
- <<: *task_template
|
||||
@ -2134,7 +2143,6 @@ buildvariants:
|
||||
push_arch: x86_64
|
||||
compile_flags: -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++ --release
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
tasks:
|
||||
- name: compile
|
||||
distros:
|
||||
@ -2243,7 +2251,7 @@ buildvariants:
|
||||
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
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure --repeat=10 --shuffle
|
||||
test_flags: --repeat=10 --shuffle
|
||||
tasks:
|
||||
- name: compile
|
||||
distros:
|
||||
@ -2276,7 +2284,6 @@ buildvariants:
|
||||
push_name: linux-debug
|
||||
push_arch: x86_64
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
compile_flags: --dbg=on --opt=on -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
tasks:
|
||||
- name: compile
|
||||
@ -2376,7 +2383,7 @@ buildvariants:
|
||||
push_arch: x86_64
|
||||
compile_flags: -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure --nojournal
|
||||
test_flags: --nojournal
|
||||
tasks:
|
||||
- name: compile
|
||||
distros:
|
||||
@ -2435,7 +2442,7 @@ buildvariants:
|
||||
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
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure --wiredTigerCollectionConfig=type=lsm --wiredTigerIndexConfig=type=lsm
|
||||
test_flags: --wiredTigerCollectionConfig=type=lsm --wiredTigerIndexConfig=type=lsm
|
||||
tasks:
|
||||
- name: compile
|
||||
distros:
|
||||
@ -2489,7 +2496,6 @@ buildvariants:
|
||||
push_arch: x86_64-ubuntu1204
|
||||
compile_flags: --ssl MONGO_DISTMOD=ubuntu1204 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager.py
|
||||
packager_distro: ubuntu1204
|
||||
@ -2592,7 +2598,6 @@ buildvariants:
|
||||
push_arch: x86_64-ubuntu1404
|
||||
compile_flags: --ssl MONGO_DISTMOD=ubuntu1404 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager.py
|
||||
packager_distro: ubuntu1404
|
||||
@ -2695,7 +2700,6 @@ buildvariants:
|
||||
push_arch: x86_64-enterprise-amzn64
|
||||
compile_flags: --ssl MONGO_DISTMOD=amzn64 --release -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager-enterprise.py
|
||||
packager_distro: amazon
|
||||
@ -2771,7 +2775,6 @@ buildvariants:
|
||||
push_arch: x86_64-amazon
|
||||
compile_flags: --ssl MONGO_DISTMOD=amazon -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager.py
|
||||
packager_distro: amazon
|
||||
@ -2878,7 +2881,7 @@ buildvariants:
|
||||
push_arch: i686
|
||||
compile_flags: --release MONGO_DISTARCH=i686 -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++ --wiredtiger=off CCFLAGS="-m32" LINKFLAGS="-m32"
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure --storageEngine=mmapv1 -j1 # Avoid starting too many mongod's on 32-bit systems.
|
||||
test_flags: --storageEngine=mmapv1 -j1 # Avoid starting too many mongod's on 32-bit systems.
|
||||
tasks:
|
||||
- name: compile
|
||||
distros:
|
||||
@ -2908,7 +2911,6 @@ buildvariants:
|
||||
push_arch: x86_64-decimal
|
||||
compile_flags: -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++ --release --experimental-decimal-support=on
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
tasks:
|
||||
- name: compile
|
||||
distros:
|
||||
@ -2940,7 +2942,6 @@ buildvariants:
|
||||
content_type: application/zip
|
||||
compile_flags: --release -j$(grep -c ^processor /proc/cpuinfo) VARIANT_DIR=win32
|
||||
num_jobs_available: 1
|
||||
test_flags: --continueOnFailure
|
||||
ext: zip
|
||||
tasks:
|
||||
- name: compile
|
||||
@ -3036,7 +3037,6 @@ buildvariants:
|
||||
content_type: application/zip
|
||||
compile_flags: --release --win-version-min=ws08r2 -j$(grep -c ^processor /proc/cpuinfo) MONGO_DISTMOD=2008plus VARIANT_DIR=win32
|
||||
num_jobs_available: 1
|
||||
test_flags: --continueOnFailure
|
||||
ext: zip
|
||||
tasks:
|
||||
- name: compile
|
||||
@ -3131,7 +3131,6 @@ buildvariants:
|
||||
push_arch: x86_64-2008plus
|
||||
content_type: application/zip
|
||||
num_jobs_available: 1
|
||||
test_flags: --continueOnFailure
|
||||
compile_flags: --dbg=on --opt=on --win-version-min=ws08r2 -j$(grep -c ^processor /proc/cpuinfo) MONGO_DISTMOD=2008plus
|
||||
ext: zip
|
||||
tasks:
|
||||
@ -3220,7 +3219,6 @@ buildvariants:
|
||||
content_type: application/zip
|
||||
compile_flags: --release --ssl MONGO_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
|
||||
num_jobs_available: 1
|
||||
test_flags: --continueOnFailure
|
||||
ext: zip
|
||||
tasks:
|
||||
- name: compile
|
||||
@ -3275,7 +3273,7 @@ buildvariants:
|
||||
content_type: application/zip
|
||||
compile_flags: --release --ssl MONGO_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
|
||||
num_jobs_available: 1
|
||||
test_flags: --continueOnFailure --storageEngine=inMemory --excludeWithAnyTags=requires_persistence
|
||||
test_flags: --storageEngine=inMemory --excludeWithAnyTags=requires_persistence
|
||||
ext: zip
|
||||
tasks:
|
||||
- name: compile
|
||||
@ -3324,7 +3322,6 @@ buildvariants:
|
||||
content_type: application/zip
|
||||
compile_flags: --release --ssl MONGO_DISTMOD=2008plus-ssl CPPPATH="c:/openssl/include" LIBPATH="c:/openssl/lib" -j$(grep -c ^processor /proc/cpuinfo) --dynamic-windows --win-version-min=ws08r2 VARIANT_DIR=win32
|
||||
num_jobs_available: 1
|
||||
test_flags: --continueOnFailure
|
||||
ext: zip
|
||||
tasks:
|
||||
- name: compile
|
||||
@ -3410,7 +3407,7 @@ buildvariants:
|
||||
content_type: application/zip
|
||||
compile_flags: --release -j$(grep -c ^processor /proc/cpuinfo) --wiredtiger=off TARGET_ARCH=i386 VARIANT_DIR=win32
|
||||
num_jobs_available: 1
|
||||
test_flags: --continueOnFailure --storageEngine=mmapv1 -j1 # Avoid starting too many mongod's on 32-bit systems.
|
||||
test_flags: --storageEngine=mmapv1 -j1 # Avoid starting too many mongod's on 32-bit systems.
|
||||
ext: zip
|
||||
tasks:
|
||||
- name: compile
|
||||
@ -3443,7 +3440,6 @@ buildvariants:
|
||||
push_arch: x86_64
|
||||
compile_flags: --allocator=system -j$(sysctl -n hw.logicalcpu) --release --osx-version-min=10.7 --libc++
|
||||
num_jobs_available: 1
|
||||
test_flags: --continueOnFailure
|
||||
tasks:
|
||||
- name: compile
|
||||
- name: aggregation
|
||||
@ -3530,7 +3526,6 @@ buildvariants:
|
||||
tooltags: "-tags ssl"
|
||||
compile_flags: --ssl --allocator=system -j$(sysctl -n hw.logicalcpu) --release --osx-version-min=10.7 --libc++
|
||||
num_jobs_available: 1
|
||||
test_flags: --continueOnFailure
|
||||
tasks:
|
||||
- name: compile
|
||||
- name: aggregation
|
||||
@ -3614,7 +3609,6 @@ buildvariants:
|
||||
push_name: osx-debug
|
||||
push_arch: x86_64
|
||||
num_jobs_available: 1
|
||||
test_flags: --continueOnFailure
|
||||
compile_flags: --dbg=on --opt=on --allocator=system -j$(sysctl -n hw.logicalcpu) --osx-version-min=10.7 --libc++
|
||||
tasks:
|
||||
- name: compile
|
||||
@ -3658,7 +3652,6 @@ buildvariants:
|
||||
tooltags: "-tags 'ssl sasl'"
|
||||
compile_flags: --ssl --allocator=system -j$(sysctl -n hw.logicalcpu) --release --osx-version-min=10.7 --libc++
|
||||
num_jobs_available: 1
|
||||
test_flags: --continueOnFailure
|
||||
tasks:
|
||||
- name: compile
|
||||
- name: audit
|
||||
@ -3705,7 +3698,6 @@ buildvariants:
|
||||
push_arch: x86_64-enterprise-rhel57
|
||||
compile_flags: --ssl MONGO_DISTMOD=rhel57 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager-enterprise.py
|
||||
packager_distro: rhel57
|
||||
@ -3753,7 +3745,6 @@ buildvariants:
|
||||
rlp_environment: MONGOD_UNITTEST_RLP_LANGUAGE_TEST_BTROOT=/opt/basis
|
||||
compile_flags: --ssl MONGO_DISTMOD=rhel62 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++ CPPPATH="/opt/basis/rlp/rlp/include /opt/basis/rlp/utilities/include" --use-basis-tech-rosette-linguistics-platform=on
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager-enterprise.py
|
||||
packager_distro: rhel62
|
||||
@ -3888,7 +3879,6 @@ buildvariants:
|
||||
push_arch: x86_64-enterprise-rhel70
|
||||
compile_flags: --ssl MONGO_DISTMOD=rhel70 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager-enterprise.py
|
||||
packager_distro: rhel70
|
||||
@ -3935,7 +3925,6 @@ buildvariants:
|
||||
push_arch: x86_64-rhel55
|
||||
compile_flags: --ssl MONGO_DISTMOD=rhel55 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager.py
|
||||
packager_distro: rhel55
|
||||
@ -4039,7 +4028,6 @@ buildvariants:
|
||||
push_arch: x86_64-rhel62
|
||||
compile_flags: --ssl MONGO_DISTMOD=rhel62 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager.py
|
||||
packager_distro: rhel62
|
||||
@ -4143,7 +4131,6 @@ buildvariants:
|
||||
push_arch: x86_64-rhel70
|
||||
compile_flags: --ssl MONGO_DISTMOD=rhel70 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager.py
|
||||
packager_distro: rhel70
|
||||
@ -4252,7 +4239,6 @@ buildvariants:
|
||||
push_arch: x86_64-enterprise-ubuntu1204
|
||||
compile_flags: --ssl MONGO_DISTMOD=ubuntu1204 --release -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager-enterprise.py
|
||||
packager_distro: ubuntu1204
|
||||
@ -4300,7 +4286,6 @@ buildvariants:
|
||||
push_arch: x86_64-enterprise-ubuntu1404
|
||||
compile_flags: --ssl MONGO_DISTMOD=ubuntu1404 --release -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager-enterprise.py
|
||||
packager_distro: ubuntu1404
|
||||
@ -4352,7 +4337,6 @@ buildvariants:
|
||||
push_arch: x86_64-enterprise-suse12
|
||||
compile_flags: --ssl MONGO_DISTMOD=suse12 --release -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager-enterprise.py
|
||||
packager_distro: suse12
|
||||
@ -4399,7 +4383,6 @@ buildvariants:
|
||||
push_arch: x86_64-suse12
|
||||
compile_flags: --ssl MONGO_DISTMOD=suse12 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager.py
|
||||
packager_distro: suse12
|
||||
@ -4504,7 +4487,6 @@ buildvariants:
|
||||
push_arch: x86_64-enterprise-suse11
|
||||
compile_flags: --ssl MONGO_DISTMOD=suse11 --release -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager-enterprise.py
|
||||
packager_distro: suse11
|
||||
@ -4551,7 +4533,6 @@ buildvariants:
|
||||
push_arch: x86_64-suse11
|
||||
compile_flags: --ssl MONGO_DISTMOD=suse11 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager.py
|
||||
packager_distro: suse11
|
||||
@ -4656,7 +4637,6 @@ buildvariants:
|
||||
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" OBJCOPY=/opt/mongodbtoolchain/bin/objcopy
|
||||
num_jobs_available: $(kstat cpu | sort -u | grep -c "^module")
|
||||
test_flags: --continueOnFailure
|
||||
tasks:
|
||||
- name: compile
|
||||
- name: aggregation
|
||||
@ -4737,7 +4717,6 @@ buildvariants:
|
||||
push_arch: x86_64-enterprise-debian71
|
||||
compile_flags: --ssl MONGO_DISTMOD=debian71 --release -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager-enterprise.py
|
||||
packager_distro: debian71
|
||||
@ -4784,7 +4763,6 @@ buildvariants:
|
||||
push_arch: x86_64-debian71
|
||||
compile_flags: --ssl MONGO_DISTMOD=debian71 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
has_packages: true
|
||||
packager_script: packager.py
|
||||
packager_distro: debian71
|
||||
@ -4890,7 +4868,7 @@ buildvariants:
|
||||
gorootvars: GOROOT=/opt/go PATH="/opt/go/bin:$PATH"
|
||||
tooltags: "-tags 'ssl sasl'"
|
||||
rlp_environment: MONGOD_UNITTEST_RLP_LANGUAGE_TEST_BTROOT=/opt/basis
|
||||
test_flags: --continueOnFailure --storageEngine=inMemory --excludeWithAnyTags=requires_persistence
|
||||
test_flags: --storageEngine=inMemory --excludeWithAnyTags=requires_persistence
|
||||
compile_flags: --ssl MONGO_DISTMOD=rhel62 -j$(grep -c ^processor /proc/cpuinfo) --release CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++ CPPPATH="/opt/basis/rlp/rlp/include /opt/basis/rlp/utilities/include" --use-basis-tech-rosette-linguistics-platform=on
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
has_packages: true
|
||||
@ -4974,7 +4952,7 @@ buildvariants:
|
||||
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"
|
||||
test_flags: --continueOnFailure --storageEngine=ephemeralForTest --excludeWithAnyTags=requires_persistence,requires_fsync,SERVER-21420,SERVER-21658
|
||||
test_flags: --storageEngine=ephemeralForTest --excludeWithAnyTags=requires_persistence,requires_fsync,SERVER-21420,SERVER-21658
|
||||
compile_flags: -j$(grep -c ^processor /proc/cpuinfo) --dbg=off --opt=on CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
tasks:
|
||||
@ -5048,7 +5026,7 @@ buildvariants:
|
||||
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
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure --storageEngine=rocksdb
|
||||
test_flags: --storageEngine=rocksdb
|
||||
tasks:
|
||||
- name: compile
|
||||
distros:
|
||||
@ -5113,7 +5091,7 @@ buildvariants:
|
||||
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
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: -j1 --continueOnFailure # Avoid starting too many mongod's under ASAN build.
|
||||
test_flags: -j1 # Avoid starting too many mongod's under ASAN build.
|
||||
tasks:
|
||||
- name: compile
|
||||
- name: aggregation
|
||||
@ -5214,7 +5192,7 @@ buildvariants:
|
||||
enable_lsan: LSAN_OPTIONS="suppressions=etc/lsan.suppressions" ASAN_OPTIONS=detect_leaks=1
|
||||
compile_flags: CC=/usr/bin/clang CXX=/usr/bin/clang++ --opt=on --allocator=system --sanitize=address --ssl -j$(grep -c ^processor /proc/cpuinfo) --nostrip VARIANT_DIR=build
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: -j1 --continueOnFailure # Avoid starting too many mongod's under ASAN build.
|
||||
test_flags: -j1 # Avoid starting too many mongod's under ASAN build.
|
||||
tasks:
|
||||
- name: compile
|
||||
- name: jstestfuzz
|
||||
@ -5233,7 +5211,6 @@ buildvariants:
|
||||
tooltags: "-tags 'ssl'"
|
||||
compile_flags: CC=/usr/bin/clang CXX=/usr/bin/clang++ --libc++ --ssl -j$(grep -c ^processor /proc/cpuinfo) VARIANT_DIR=build MONGO_DISTMOD=ubuntu1410-clang
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
push_path: linux
|
||||
push_bucket: downloads.mongodb.org
|
||||
push_name: linux
|
||||
@ -5336,7 +5313,6 @@ buildvariants:
|
||||
tooltags: "-tags 'ssl sasl'"
|
||||
compile_flags: --ssl MONGO_DISTMOD=ubuntu1404 -j$(grep -c ^processor /proc/cpuinfo) CC=/opt/mongodbtoolchain/bin/gcc CXX=/opt/mongodbtoolchain/bin/g++ --link-model=dynamic
|
||||
num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
|
||||
test_flags: --continueOnFailure
|
||||
tasks:
|
||||
- name: compile
|
||||
distros:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user