Skip to content

Commit

Permalink
Replace grunt call with FTR one-liner
Browse files Browse the repository at this point in the history
  • Loading branch information
brianseeders committed Nov 9, 2020
1 parent 60909b7 commit 3d7913e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .ci/teamcity/oss/ci_group.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 3d7913e

Please sign in to comment.