-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
WIP: Scripts for performance testing unipi #20
base: main
Are you sure you want to change the base?
Conversation
* some variables need modification for other systems, * and networking setup/teardown need to be reenabled
…pecial git-daemon port to not collide
…l didn't get enough mem ++
There is a README.md in the These scripts were initially developed to be run from a script in The interface of each script to be used by |
The corresponding PR for |
This has been tested on Linux only - should probably as a minimum be tested on FreeBSD too |
cp "$ROOT"/"$DATA_DIR"/index.html ./ | ||
git add index.html | ||
git commit -m "index.html" | ||
git push |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On this part of this script: init.sh
should expects a bundle git (which can provided by the user with git bundle create
). On this script, it will be:
$ git clone ${GIT_BUNDLE} --bare ${DATA_DIR}
$ git daemon ... &
By this way, we are able to launch the performance test with a "default" bundle (with a simple index.html
) or an user's bundle (with a bigger index.html
).
No description provided.