|
|
@@ -1,21 +1,5 @@
|
|
|
# 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", "precommit_master", "precommit_branch"]
|
|
|
-
|
|
|
-buildConfiguration_branch {
|
|
|
- title = "configuration phase (@testGitCommit@)"
|
|
|
- tasks = ["help"]
|
|
|
- gradle-args = ["--no-scan", "--no-build-cache"]
|
|
|
- run-using = cli // value can be "cli" or "tooling-api"
|
|
|
- daemon = warm // value can be "warm", "cold", or "none"
|
|
|
- warm-ups = 5
|
|
|
- iterations = 10
|
|
|
- system-properties {
|
|
|
- "BUILD_PERFORMANCE_TEST" = "true"
|
|
|
- }
|
|
|
- git-checkout = {
|
|
|
- build = "@testGitCommit@"
|
|
|
- }
|
|
|
-}
|
|
|
+default-scenarios = ["buildConfiguration_master", "buildConfiguration_branch", "single_project_master", "single_project_branch"]
|
|
|
|
|
|
buildConfiguration_master {
|
|
|
title = "configuration phase (master)"
|
|
|
@@ -33,10 +17,9 @@ buildConfiguration_master {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-precommit_branch {
|
|
|
- title = "precommit (@testGitCommit@)"
|
|
|
- cleanup-tasks = ["clean"]
|
|
|
- tasks = ["precommit"]
|
|
|
+buildConfiguration_branch {
|
|
|
+ title = "configuration phase (@testGitCommit@)"
|
|
|
+ tasks = ["help"]
|
|
|
gradle-args = ["--no-scan", "--no-build-cache"]
|
|
|
run-using = cli // value can be "cli" or "tooling-api"
|
|
|
daemon = warm // value can be "warm", "cold", or "none"
|
|
|
@@ -50,11 +33,11 @@ precommit_branch {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-precommit_master {
|
|
|
- title = "precommit (master)"
|
|
|
- cleanup-tasks = ["clean"]
|
|
|
- tasks = ["precommit"]
|
|
|
- gradle-args = ["--no-scan", "--no-build-cache"]
|
|
|
+single_project_master {
|
|
|
+ title = "single project (master)"
|
|
|
+ tasks = [":server:precommit"]
|
|
|
+ gradle-args = ["--no-scan"]
|
|
|
+ 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"
|
|
|
warm-ups = 5
|
|
|
@@ -82,21 +65,4 @@ single_project_branch {
|
|
|
git-checkout = {
|
|
|
build = "@testGitCommit@"
|
|
|
}
|
|
|
-}
|
|
|
-
|
|
|
-single_project_master {
|
|
|
- title = "single project (master)"
|
|
|
- tasks = [":server:precommit"]
|
|
|
- gradle-args = ["--no-scan"]
|
|
|
- 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"
|
|
|
- warm-ups = 5
|
|
|
- iterations = 10
|
|
|
- system-properties {
|
|
|
- "BUILD_PERFORMANCE_TEST" = "true"
|
|
|
- }
|
|
|
- git-checkout = {
|
|
|
- build = "master"
|
|
|
- }
|
|
|
-}
|
|
|
+}
|