Skip to content

Commit

Permalink
[CI] Move kibana build dir outside of repo for functional tests (#80018
Browse files Browse the repository at this point in the history
…) (#80047)
  • Loading branch information
brianseeders committed Oct 8, 2020
1 parent 224404a commit 32ec108
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions test/scripts/jenkins_test_setup_oss.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
source test/scripts/jenkins_test_setup.sh

if [[ -z "$CODE_COVERAGE" ]]; then

destDir="build/kibana-build-oss"
if [[ ! "$TASK_QUEUE_PROCESS_ID" ]]; then
destDir="${destDir}-${CI_PARALLEL_PROCESS_NUMBER}"
fi
destDir="$WORKSPACE/kibana-build-oss-${TASK_QUEUE_PROCESS_ID:-$CI_PARALLEL_PROCESS_NUMBER}"

if [[ ! -d $destDir ]]; then
mkdir -p $destDir
Expand Down
6 changes: 1 addition & 5 deletions test/scripts/jenkins_test_setup_xpack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
source test/scripts/jenkins_test_setup.sh

if [[ -z "$CODE_COVERAGE" ]]; then

destDir="build/kibana-build-xpack"
if [[ ! "$TASK_QUEUE_PROCESS_ID" ]]; then
destDir="${destDir}-${CI_PARALLEL_PROCESS_NUMBER}"
fi
destDir="$WORKSPACE/kibana-build-xpack-${TASK_QUEUE_PROCESS_ID:-$CI_PARALLEL_PROCESS_NUMBER}"

if [[ ! -d $destDir ]]; then
mkdir -p $destDir
Expand Down

0 comments on commit 32ec108

Please sign in to comment.