From bab31f119878426a97a4634a99cfcc51465bef6f Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Sun, 19 Aug 2018 11:22:43 -0500 Subject: [PATCH] circleci: allow more time and capture the log --- .circleci/config.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b29b1bd4..c252ca37 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,9 +9,11 @@ jobs: - run: docker build -t mc:$CIRCLE_BUILD_NUM minecraft-server - run: name: Test default version and type - no_output_timeout: "10s" + no_output_timeout: "30s" command: | - docker run -t --rm -e EULA=TRUE mc:$CIRCLE_BUILD_NUM | grep "[Server thread/INFO]: Done" + docker run -t --rm -e EULA=TRUE mc:$CIRCLE_BUILD_NUM | tee /tmp/docker-run.log | grep "[Server thread/INFO]: Done" + - store_artifacts: + path: /tmp/docker-run.log workflows: version: 2