Add a smoke test sql option to the ci script (elastic/x-pack-elasticsearch#2101)

This should allow creation of a ci build to smoke test sql which
should be faster but less complete than the normal build on the
sql branch.

Original commit: elastic/x-pack-elasticsearch@87748b37f9
This commit is contained in:
Nik Everett 2017-07-27 09:59:57 -04:00 committed by GitHub
parent f2a4e29039
commit 23c76e31e5
1 changed files with 9 additions and 0 deletions

View File

@ -47,6 +47,15 @@ case $key in
"-Dtests.badapples=true"
)
;;
smokeTestSql) # NOCOMMIT remove this once we are ready to merge sql down
GRADLE_CLI_ARGS=(
"--info"
"-psql"
"check"
":x-pack-elasticsearch:plugin:precommit"
"-xforbiddenPatterns"
)
;;
jdk9)
GRADLE_CLI_ARGS=(
"-Pxpack.kibana.build=false"