mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 09:28:55 -04:00
35 lines
965 B
Text
35 lines
965 B
Text
default-scenarios = ["precommit_master", "precommit_branch"]
|
|
|
|
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"
|
|
}
|
|
}
|
|
|
|
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@"
|
|
}
|
|
}
|