andy5995 commented on this pull request.
> @@ -37,7 +112,10 @@ script:
mkdir _build &&
cd _build &&
{ ../configure $CONFIGURE_FLAGS || { cat config.log; exit 1; } ; } &&
- make -j2 &&
- make -j2 check &&
- make -j2 distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_FLAGS";
+ if [ -z "$DISTCHECK_ONLY" ]; then
+ make -j2 VERBOSE=1 -n &&
+ make -j2 check;
+ else
+ make -j2 distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_FLAGS";
+ fi;
> Now its failed on another `noexcept`, @andy5995 please don't trigger another
> build, its not possible to see old build logs, wait for others to see it.
Sure, I'll wait. But I do believe you can see old build logs at
https://travis-ci.org/geany/geany/pull_requests
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/2067#discussion_r281934165