Skip to content

Commit

Permalink
Fix submodule handling in dockerized tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrdada committed Feb 23, 2018
1 parent deae9d8 commit 5b0685b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions tools/run_tests/dockerize/docker_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ then
# TODO: figure out a way to eliminate this following shellcheck suppressions
# shellcheck disable=SC2016,SC1004
(cd "${EXTERNAL_GIT_ROOT}" && git submodule foreach 'git clone ${EXTERNAL_GIT_ROOT}/${name} /var/local/git/grpc/${name}')
(cd /var/local/git/grpc && git submodule init)
else
mkdir -p "/var/local/git/grpc/$RELATIVE_COPY_PATH"
cp -r "$EXTERNAL_GIT_ROOT/$RELATIVE_COPY_PATH"/* "/var/local/git/grpc/$RELATIVE_COPY_PATH"
Expand Down
5 changes: 3 additions & 2 deletions tools/run_tests/dockerize/docker_run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ mkdir -p /var/local/git
git clone /var/local/jenkins/grpc /var/local/git/grpc
# clone gRPC submodules, use data from locally cloned submodules where possible
# TODO: figure out a way to eliminate this shellcheck suppression:
# shellcheck disable=SC2016,SC1004
(cd /var/local/jenkins/grpc/ && git submodule foreach 'git clone /var/local/jenkins/grpc/{$name} /var/local/jenkins/grpc/${name}')
# shellcheck disable=SC2016
(cd /var/local/jenkins/grpc/ && git submodule foreach 'git clone /var/local/jenkins/grpc/${name} /var/local/git/grpc/${name}')
(cd /var/local/git/grpc/ && git submodule init)

mkdir -p reports

Expand Down

0 comments on commit 5b0685b

Please sign in to comment.