Files
mongo/buildscripts/resmokelib/multiversionconstants.py
Robert Guo 846a99de9a SERVER-54622 Retrieve back-branch fixture files to assemble multiversion
remove task_path_suffix from evergreen_gen_multiversion_tasks.py

replication works

fix fixture API adherence test

generate mongos port on startup

fix sharding and reformat
2021-05-27 14:49:58 +00:00

18 lines
685 B
Python

"""FCV and Server binary version constants used for multiversion testing."""
LAST_LTS_BIN_VERSION = "4.4"
LAST_CONTINUOUS_BIN_VERSION = "5.0"
LAST_LTS_FCV = "4.4"
LAST_CONTINUOUS_FCV = "5.0"
LATEST_FCV = "5.0"
LAST_CONTINUOUS_MONGO_BINARY = "mongo-" + LAST_CONTINUOUS_BIN_VERSION
LAST_CONTINUOUS_MONGOD_BINARY = "mongod-" + LAST_CONTINUOUS_BIN_VERSION
LAST_CONTINUOUS_MONGOS_BINARY = "mongos-" + LAST_CONTINUOUS_BIN_VERSION
LAST_LTS_MONGO_BINARY = "mongo-" + LAST_LTS_BIN_VERSION
LAST_LTS_MONGOD_BINARY = "mongod-" + LAST_LTS_BIN_VERSION
LAST_LTS_MONGOS_BINARY = "mongos-" + LAST_LTS_BIN_VERSION
REQUIRES_FCV_TAG = "requires_fcv_47,requires_fcv_48,requires_fcv_49,requires_fcv_50"