We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi all,
I've made this bash script to install Genny, via running:
chmod +x ./genny_install.sh ./genny_install.sh
I've added the -j$(nproc) option with make, enables parallel compilation using all available processor cores, speeding up the build process:
-j$(nproc)
make
#!/bin/bash set -e export GENNY_REPO="https://github.com/mongodb/genny.git" export GENNY_DIR="genny" export BUILD_DIR="${GENNY_DIR}/build" export MONGO_DB_VERSION="4.4.0" if [ ! -d "$GENNY_DIR" ]; then git clone $GENNY_REPO $GENNY_DIR fi cd $GENNY_DIR git submodule update --init --recursive mkdir -p $BUILD_DIR cd $BUILD_DIR cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/opt/genny \ -DMONGO_DB_VERSION=$MONGO_DB_VERSION make -j$(nproc)
I get a similar 404 as proposed in another issue in this repository. Any ideas?
Cheers, Michael Mendy
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi all,
I've made this bash script to install Genny, via running:
I've added the
-j$(nproc)
option withmake
, enables parallel compilation using all available processor cores, speeding up the build process:I get a similar 404 as proposed in another issue in this repository. Any ideas?
Cheers,
Michael Mendy
The text was updated successfully, but these errors were encountered: