Files
mongo/buildscripts/resmokelib/multiversionconstants.py

11 lines
357 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.7"
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"