Integration Tests. Small fixes for CI. (#9988)

Co-authored-by: agritsenko <agritsenko@provectus.com>
This commit is contained in:
agricenko 2020-06-05 03:10:56 +03:00 committed by GitHub
parent 9738a03c83
commit e72f490be0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -25,15 +25,15 @@ export SHARED_DIR=${HOME}/shared
echo ${DOCKER_IP:=127.0.0.1} > $DOCKERDIR/docker_ip echo ${DOCKER_IP:=127.0.0.1} > $DOCKERDIR/docker_ip
if !($DRUID_INTEGRATION_TEST_SKIP_BUILD_DOCKER); then if !($DRUID_INTEGRATION_TEST_SKIP_BUILD_DOCKER); then
sh ./script/copy_resources.sh bash ./script/copy_resources.sh
sh ./script/docker_build_containers.sh bash ./script/docker_build_containers.sh
fi fi
if !($DRUID_INTEGRATION_TEST_SKIP_RUN_DOCKER); then if !($DRUID_INTEGRATION_TEST_SKIP_RUN_DOCKER); then
sh ./stop_cluster.sh bash ./stop_cluster.sh
sh ./script/docker_run_cluster.sh bash ./script/docker_run_cluster.sh
fi fi
if ($DRUID_INTEGRATION_TEST_START_HADOOP_DOCKER); then if ($DRUID_INTEGRATION_TEST_START_HADOOP_DOCKER); then
sh ./script/copy_hadoop_resources.sh bash ./script/copy_hadoop_resources.sh
fi fi