File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed
Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -647,9 +647,7 @@ jobs:
647647before_install : |
648648 set -e
649649
650- if [[ $SDIST == 1 ]]; then
651- echo "sdist build"
652- else
650+ if [[ $SDIST == 0 ]]; then
653651 # Check out and prepare the source
654652 # Multibuild doesn't have releases, so --depth would break eventually (see
655653 # https://superuser.com/questions/1240216/server-does-not-allow-request-for-unadvertised)
@@ -703,16 +701,13 @@ install: |
703701
704702script : |
705703 # Install and run tests
706- set -x
707704
708- if [[ $SDIST == 1 ]]; then
709- echo "sdist"
710- else
705+ if [[ $SDIST == 0 ]]; then
706+ set -x
711707 install_run $PLAT && rc=$? || rc=$?
708+ set +x
712709 fi
713710
714- set +x
715-
716711 # otherwise, Travis logic terminates prematurely
717712 # https://travis-ci.community/t/shell-session-update-command-not-found-in-build-log-causes-build-to-fail-if-trap-err-is-set/817
718713 trap ERR
You can’t perform that action at this time.
0 commit comments