Skip to content

Commit

Permalink
script.sh: Don't use broken .ci-output.py
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ajelinski committed Feb 15, 2021
1 parent 2b9ab65 commit 885276d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 885276d

Please sign in to comment.