Skip to content

Commit 16737fd

Browse files
committed
Add a Gradle profiler scenario and some instructions
1 parent 106ae77 commit 16737fd

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

CONTRIBUTING.md

+17
Original file line numberDiff line numberDiff line change
@@ -564,6 +564,23 @@ To be able to benefit from the remote cache, you need to use a Java version test
564564
The local cache is stored in the `~/.m2/.gradle-enterprise/build-cache/` directory.
565565
If you have problems with your local cache, you can delete this directory.
566566

567+
During the experiment phase, there might be a need to benchmark the build in a reliable manner.
568+
569+
For this, we can use the [Gradle Profiler](https://github.com/gradle/gradle-profiler).
570+
It can be installed with SDKMAN! (`sdk install gradleprofiler`) or Homebrew (`brew install gradle-profiler`).
571+
572+
Then we can run the following commands at the root of the Quarkus project:
573+
574+
```
575+
# Without cache
576+
gradle-profiler --maven --benchmark --scenario-file build.scenario clean_install_no_cache
577+
578+
# With cache
579+
gradle-profiler --maven --benchmark --scenario-file build.scenario clean_install
580+
```
581+
582+
Simple HTML reports will be published in the `profile_out*` directories.
583+
567584
## Release your own version
568585

569586
You might want to release your own patched version of Quarkus to an internal repository.

build.scenario

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
clean_install {
2+
tasks = ["clean","install","-Dquickly", "-T6"]
3+
cleanup-tasks = ["clean"]
4+
maven {
5+
targets = ["clean","install","-Dquickly", "-T6"]
6+
}
7+
warm-ups = 1
8+
iterations = 3
9+
}
10+
11+
clean_install_no_scan {
12+
tasks = ["clean","install","-Dquickly", "-T6", "-Dscan=false"]
13+
cleanup-tasks = ["clean"]
14+
maven {
15+
targets = ["clean","install","-Dquickly", "-T6", "-Dscan=false"]
16+
}
17+
warm-ups = 1
18+
iterations = 3
19+
}
20+
21+
clean_install_no_cache {
22+
tasks = ["clean","install","-Dquickly", "-T6", "-Dno-build-cache"]
23+
cleanup-tasks = ["clean"]
24+
maven {
25+
targets = ["clean","install","-Dquickly", "-T6", "-Dno-build-cache"]
26+
}
27+
warm-ups = 1
28+
iterations = 3
29+
}
30+
31+
clean_install_no_cache_no_scan {
32+
tasks = ["clean","install","-Dquickly", "-T6", "-Dno-build-cache", "-Dscan=false"]
33+
cleanup-tasks = ["clean"]
34+
maven {
35+
targets = ["clean","install","-Dquickly", "-T6", "-Dno-build-cache", "-Dscan=false"]
36+
}
37+
warm-ups = 1
38+
iterations = 3
39+
}
40+

0 commit comments

Comments
 (0)