| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- # 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@"
- }
- }
- buildConfiguration_master {
- title = "configuration phase (master)"
- 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 = "master"
- }
- }
- precommit_branch {
- title = "precommit (@testGitCommit@)"
- cleanup-tasks = ["clean"]
- tasks = ["precommit"]
- 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@"
- }
- }
- precommit_master {
- title = "precommit (master)"
- cleanup-tasks = ["clean"]
- tasks = ["precommit"]
- 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 = "master"
- }
- }
- single_project_branch {
- title = "single project (@testGitCommit@)"
- cleanup-tasks = [":server:clean"]
- tasks = [":server:spotlessApply", ":server:precommit"]
- gradle-args = ["--no-scan"]
- apply-abi-change-to = "server/src/main/java/org/elasticsearch/Build.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 = "@testGitCommit@"
- }
- }
- single_project_master {
- title = "single project (master)"
- cleanup-tasks = [":server:clean"]
- tasks = [":server:spotlessApply", ":server:precommit"]
- gradle-args = ["--no-scan"]
- apply-abi-change-to = "server/src/main/java/org/elasticsearch/Build.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"
- }
- }
|