mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 18:27:59 -04:00
11 lines
317 B
Bash
11 lines
317 B
Bash
#!/usr/bin/env bash
|
|
|
|
source test/scripts/jenkins_test_setup.sh
|
|
|
|
if [[ -z "$CODE_COVERAGE" ]] ; then
|
|
installDir="$(realpath $PARENT_DIR/kibana/build/oss/kibana-*-SNAPSHOT-linux-x86_64)"
|
|
destDir=${installDir}-${CI_PARALLEL_PROCESS_NUMBER}
|
|
cp -R "$installDir" "$destDir"
|
|
|
|
export KIBANA_INSTALL_DIR="$destDir"
|
|
fi
|