mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
* Shell script to run kibana tests on cloud via Jenkins * Add comment explaining cloud setup
This commit is contained in:
parent
942d2b28df
commit
67addab4eb
1 changed files with 26 additions and 0 deletions
26
test/scripts/jenkins_cloud.sh
Executable file
26
test/scripts/jenkins_cloud.sh
Executable file
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# This script runs kibana tests compatible with cloud.
|
||||
#
|
||||
# The cloud instance setup is done in the elastic/elastic-stack-testing framework,
|
||||
# where the following environment variables are set pointing to the cloud instance.
|
||||
#
|
||||
# export TEST_KIBANA_HOSTNAME
|
||||
# export TEST_KIBANA_PROTOCOL=
|
||||
# export TEST_KIBANA_PORT=
|
||||
# export TEST_KIBANA_USER=
|
||||
# export TEST_KIBANA_PASS=
|
||||
#
|
||||
# export TEST_ES_HOSTNAME=
|
||||
# export TEST_ES_PROTOCOL=
|
||||
# export TEST_ES_PORT=
|
||||
# export TEST_ES_USER=
|
||||
# export TEST_ES_PASS=
|
||||
#
|
||||
|
||||
set -e
|
||||
|
||||
source "$(dirname $0)/../../src/dev/ci_setup/setup.sh"
|
||||
|
||||
xvfb-run node scripts/functional_test_runner --debug --grep @skipcloud --invert
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue