Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jekyll/utterson
CI benchmarking suite for Jekyll
https://github.com/jekyll/utterson
jekyll performance testing
Last synced: 3 months ago
JSON representation
CI benchmarking suite for Jekyll
- Host: GitHub
- URL: https://github.com/jekyll/utterson
- Owner: jekyll
- License: mit
- Created: 2018-05-12T02:53:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-18T05:24:49.000Z (almost 2 years ago)
- Last Synced: 2024-10-06T21:32:02.041Z (3 months ago)
- Topics: jekyll, performance, testing
- Language: Shell
- Homepage:
- Size: 187 KB
- Stars: 13
- Watchers: 5
- Forks: 8
- Open Issues: 19
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Utterson
Utterson investigates Jekyll's performance. Compare different versions of Jekyll
(or even specific PRs/commits) to see how changes might affect performance.## Usage
### Running tests
To test the current Jekyll `master` branch:
```sh
./bench
```To test a Pull Request:
```sh
PR=1234 ./bench
```To test a version:
```sh
REF=v3.8.2 ./bench
```### Creating reports
Once multiple tests have been run, generate a report showing differences in
total build time with the command:```sh
./report
```Reports will show total build time for all sites using each tested version:
```text
| ref | build time in seconds |
|:-----------------------------------------|----------------------:|
| `v3.8.2` | 287.54 |
| `v3.7.3` | 317.74 |
| `v3.6.2` | 295.49 |
| `v3.5.2` | 297.94 |
```