https://github.com/jekyll/benchmarking
Benchmarking tools for Jekyll
https://github.com/jekyll/benchmarking
Last synced: 3 months ago
JSON representation
Benchmarking tools for Jekyll
- Host: GitHub
- URL: https://github.com/jekyll/benchmarking
- Owner: jekyll
- License: mit
- Created: 2015-11-17T04:01:44.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-02-07T20:36:47.000Z (almost 8 years ago)
- Last Synced: 2024-10-29T14:58:55.492Z (about 1 year ago)
- Language: Shell
- Size: 41 KB
- Stars: 12
- Watchers: 8
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: History.markdown
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
## Tools for benchmarking Jekyll
This purpose of this repo is to hold tools that can be used to benchmark
Jekyll. Initially, it starts with a single script and a couple of
support files to generate test sites.
Currently planned features include the following:
- More scripts or a framework to build more complex sites to use for
different types of benchmarks.
- A plugin that uses Jekyll's hooks to instrument how long certain
operations take.
- A set of tools that can be used to track Jekyll's performance over
time, integrate with CI, and provide status checks that integrate
with GitHub in order to notify Jekyll's developers of performance
regressions.
## How to use the `generate_site.sh` script
You can run the script straight from the cloned repository using
bash generate_site.sh X .
...where `X` is the number of posts you want to generate.
If you want to test the various Jekyll plugins and how they affect the
build, you'll need to do the following:
- Run a couple of tests on the clean installation to have some basic
values to work with (increase `X` incrementally to do this).
- Create a `_plugins` folder and put the `.rb` file of the plugin there.
- Run the tests using the same `X` values as you've used in the
bare installation.
- Compare the results of those two sets of tests.
## License
MIT. See the [LICENSE](LICENSE) file for more details