mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 18:27:59 -04:00
13 lines
292 B
Bash
13 lines
292 B
Bash
#!/usr/bin/env bash
|
|
|
|
source test/scripts/jenkins_test_setup.sh
|
|
|
|
if [[ -z "$CODE_COVERAGE" ]]; then
|
|
installDir="$PARENT_DIR/install/kibana"
|
|
destDir="${installDir}-${CI_PARALLEL_PROCESS_NUMBER}"
|
|
cp -R "$installDir" "$destDir"
|
|
|
|
export KIBANA_INSTALL_DIR="$destDir"
|
|
|
|
cd "$XPACK_DIR"
|
|
fi
|