Files
mongo/buildscripts/resmokelib/multiversionconstants.py
2020-10-08 19:41:05 +00:00

11 lines
389 B
Python

"""FCV and Server binary version constants used for multiversion testing."""
LAST_LTS_BIN_VERSION = "4.4"
LAST_LTS_FCV = "4.4"
LATEST_FCV = "4.9"
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"