Skip to content
Snippets Groups Projects
Commit 43fef09a authored by Craig Tiller's avatar Craig Tiller
Browse files

Don't fail a build on failure to kill a docker instance

It's quite ok for a docker instance to already be dead.
parent 03d281ab
No related branches found
No related tags found
No related merge requests found
......@@ -89,8 +89,9 @@ then
bash -l /var/local/jenkins/grpc/tools/jenkins/docker_run_jenkins.sh || DOCKER_FAILED="true"
DOCKER_CID=`cat docker.cid`
docker kill $DOCKER_CID
docker kill $DOCKER_CID || true
docker cp $DOCKER_CID:/var/local/git/grpc/report.xml $git_root
# TODO(ctiller): why?
sleep 4
docker rm $DOCKER_CID || true
elif [ "$platform" == "interop" ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment