From 885276d465cc649ae7d802c77510d2e6320dd93e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Jeli=C5=84ski?= Date: Mon, 15 Feb 2021 14:00:16 +0100 Subject: [PATCH] script.sh: Don't use broken .ci-output.py Currently `.ci-output.py` script causes more harm than good. It prohibits many crucial lines from being printed in logs. For details see issue #15. Therefore it shouldn't be used to call `conda-build` until it's fixed. --- script.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script.sh b/script.sh index 49e4e2e..6ef9abb 100755 --- a/script.sh +++ b/script.sh @@ -20,9 +20,9 @@ $SPACER start_section "conda.build" "${GREEN}Building..${NC}" if [[ $OS_NAME != 'windows' ]]; then if [[ $KEEP_ALIVE = 'true' ]]; then - ci_wait $CI_MAX_TIME python $GITHUB_WORKSPACE/.github/scripts/.ci-output.py /tmp/output.log conda build $CONDA_BUILD_ARGS + ci_wait $CI_MAX_TIME conda build $CONDA_BUILD_ARGS 2>&1 | tee /tmp/output.log else - python $GITHUB_WORKSPACE/.github/scripts/.ci-output.py /tmp/output.log conda build $CONDA_BUILD_ARGS + conda build $CONDA_BUILD_ARGS 2>&1 | tee /tmp/output.log fi else # Work-around: prevent console output being mangled