File tree 1 file changed +4
-9
lines changed
Filter options
1 file changed +4
-9
lines changed
Original file line number Diff line number Diff line change @@ -647,9 +647,7 @@ jobs:
647
647
before_install : |
648
648
set -e
649
649
650
- if [[ $SDIST == 1 ]]; then
651
- echo "sdist build"
652
- else
650
+ if [[ $SDIST == 0 ]]; then
653
651
# Check out and prepare the source
654
652
# Multibuild doesn't have releases, so --depth would break eventually (see
655
653
# https://superuser.com/questions/1240216/server-does-not-allow-request-for-unadvertised)
@@ -703,16 +701,13 @@ install: |
703
701
704
702
script : |
705
703
# Install and run tests
706
- set -x
707
704
708
- if [[ $SDIST == 1 ]]; then
709
- echo "sdist"
710
- else
705
+ if [[ $SDIST == 0 ]]; then
706
+ set -x
711
707
install_run $PLAT && rc=$? || rc=$?
708
+ set +x
712
709
fi
713
710
714
- set +x
715
-
716
711
# otherwise, Travis logic terminates prematurely
717
712
# https://travis-ci.community/t/shell-session-update-command-not-found-in-build-log-causes-build-to-fail-if-trap-err-is-set/817
718
713
trap ERR
You can’t perform that action at this time.
0 commit comments