From 3d7913efce03a2bbd949cac96727d5d3a67d8dcd Mon Sep 17 00:00:00 2001 From: Brian Seeders Date: Mon, 9 Nov 2020 11:11:15 -0500 Subject: [PATCH] Replace grunt call with FTR one-liner --- .ci/teamcity/oss/ci_group.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.ci/teamcity/oss/ci_group.sh b/.ci/teamcity/oss/ci_group.sh index bf6a80e88de98..3b2fb7ea912b7 100755 --- a/.ci/teamcity/oss/ci_group.sh +++ b/.ci/teamcity/oss/ci_group.sh @@ -5,7 +5,11 @@ set -euo pipefail source "$(dirname "${0}")/../util.sh" export CI_GROUP="$1" -export JOB=kibana-ciGroup${CI_GROUP} +export JOB="kibana-ciGroup$CI_GROUP" export KIBANA_INSTALL_DIR="$PARENT_DIR/build/kibana-build-oss" -checks-reporter-with-killswitch "Functional tests / Group ${CI_GROUP}" yarn run grunt "run:functionalTests_ciGroup${CI_GROUP}"; +checks-reporter-with-killswitch "Functional tests / Group $CI_GROUP" \ + node scripts/functional_tests \ + --debug --bail \ + --kibana-install-dir "$KIBANA_INSTALL_DIR" \ + --include-tag "ciGroup$CI_GROUP"