SERVER-102739: Upgrade Jepsen docker tests to use latest Jepsen 0.3.8 and driver 5.4.0 (#34395)

GitOrigin-RevId: 5953f0d43e392ed2e6abe1901db071232538d522
This commit is contained in:
Steve McClure 2025-04-10 17:39:59 -04:00 committed by MongoDB Bot
parent f22de452d4
commit 6ea73c07d4

View File

@ -2,14 +2,14 @@ set -euo pipefail
# Clone our internal fork of jepsen-io/jepsen to get the core
# functionality with a few tweaks meant for evergreen integration.
git clone --branch=v0.2.0-evergreen-master https://x-access-token:${jepsen_github_token}@github.com/10gen/jepsen.git jepsen
git clone --branch=v0.3.0-evergreen-master https://x-access-token:${jepsen_github_token}@github.com/10gen/jepsen.git jepsen
# Copy our mongodb source for jepsen to run into the docker area to be
# copied into the image during the build process.
cp -rf src/dist-test jepsen/docker/node
# Clone our internal tests to run
git clone --branch=v0.2.2 https://x-access-token:${jepsen_io_github_token}@github.com/10gen/jepsen-io-mongodb.git jepsen/docker/control/mongodb
git clone --branch=v0.3.0 https://x-access-token:${jepsen_io_github_token}@github.com/10gen/jepsen-io-mongodb.git jepsen/docker/control/mongodb
# Kill any running containers
sudo docker container kill $(docker ps -q) || true