Skip to content

Commit

Permalink
try a different shell (tcsh)
Browse files Browse the repository at this point in the history
  • Loading branch information
andy5995 committed Apr 24, 2021
1 parent 877e541 commit 387e60c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,12 @@ script:
- ../configure ${CONFIGURE_OPTS}
- if [ -z "$DISTCHECK_ONLY" ]; then
make V=1 &&
make V=1 check -j5;
if [ "$XCODE" = "true" ]; then
tcsh "$(make V=1 check -j5)";
cat /etc/shells;
else
make V=1 check -j5;
fi;
r=$?;
if test "x$r" != x0; then
cat test/test-suite.log;
Expand Down

0 comments on commit 387e60c

Please sign in to comment.