|
@@ -1,11 +1,11 @@
|
|
|
-# Can specify scenarios to use when none are specified on the command line
|
|
|
-default-scenarios = ["buildConfiguration_master", "buildConfiguration_branch", "single_project_master", "single_project_branch"]
|
|
|
+// ensure branch scenario is listed first as this is the gradle version that will picked for inspecting the build
|
|
|
+default-scenarios = ["buildConfiguration_branch", "buildConfiguration_master", "single_project_branch", "single_project_master"]
|
|
|
|
|
|
buildConfiguration_master {
|
|
|
title = "configuration phase (master)"
|
|
|
versions = ["@masterWrapper@"]
|
|
|
tasks = ["help"]
|
|
|
- gradle-args = ["--no-scan", "--no-build-cache"]
|
|
|
+ gradle-args = ["--no-scan", "--no-build-cache", "--stacktrace"]
|
|
|
run-using = cli // value can be "cli" or "tooling-api"
|
|
|
daemon = warm // value can be "warm", "cold", or "none"
|
|
|
warm-ups = 5
|
|
@@ -22,7 +22,7 @@ buildConfiguration_branch {
|
|
|
title = "configuration phase (@testGitCommit@)"
|
|
|
versions = ["@branchWrapper@"]
|
|
|
tasks = ["help"]
|
|
|
- gradle-args = ["--no-scan", "--no-build-cache"]
|
|
|
+ gradle-args = ["--no-scan", "--no-build-cache", "--stacktrace"]
|
|
|
run-using = cli // value can be "cli" or "tooling-api"
|
|
|
daemon = warm // value can be "warm", "cold", or "none"
|
|
|
warm-ups = 5
|
|
@@ -39,7 +39,7 @@ single_project_master {
|
|
|
title = "single project (master)"
|
|
|
versions = ["@masterWrapper@"]
|
|
|
tasks = [":server:precommit"]
|
|
|
- gradle-args = ["--no-scan"]
|
|
|
+ gradle-args = ["--no-scan", "--stacktrace"]
|
|
|
apply-abi-change-to = "server/src/main/java/org/elasticsearch/bootstrap/BootstrapInfo.java"
|
|
|
run-using = cli // value can be "cli" or "tooling-api"
|
|
|
daemon = warm // value can be "warm", "cold", or "none"
|
|
@@ -57,7 +57,7 @@ single_project_branch {
|
|
|
title = "single project (@testGitCommit@)"
|
|
|
versions = ["@branchWrapper@"]
|
|
|
tasks = [":server:precommit"]
|
|
|
- gradle-args = ["--no-scan"]
|
|
|
+ gradle-args = ["--no-scan", "--stacktrace"]
|
|
|
apply-abi-change-to = "server/src/main/java/org/elasticsearch/bootstrap/BootstrapInfo.java"
|
|
|
run-using = cli // value can be "cli" or "tooling-api"
|
|
|
daemon = warm // value can be "warm", "cold", or "none"
|
|
@@ -69,4 +69,4 @@ single_project_branch {
|
|
|
git-checkout = {
|
|
|
build = "@testGitCommit@"
|
|
|
}
|
|
|
-}
|
|
|
+}
|