Travis CI
notif****@travi*****
Sun Jan 26 22:04:32 JST 2014
Build Update for groonga/groonga
-------------------------------------
Build: #2755
Status: Broken
Duration: 5 minutes and 5 seconds
Commit: c007a68 (master)
Author: Kouhei Sutou
Message: Adjust "||" behavior to ECMAScript
"x || y" returns the first not false value. If x is not false value,
"x || y" returns "x" itself not "true". If x is false value and y is
not false value, "x || y" returns "y" itself not "true".
If both "x" and "y" are false value, "x || y" returns "false". It is
not changed.
Before:
null || "string value" -> true
null || null -> false
After:
null || "string value" -> "string value" (changed)
null || null -> false (not changed)
View the changeset: https://github.com/groonga/groonga/compare/cbfff721952c...c007a6819aa3
View the full build log and details: https://travis-ci.org/groonga/groonga/builds/17643527
--
You can configure recipients for build notifications in your .travis.yml file. See http://about.travis-ci.org/docs/user/build-configuration
-------------- next part --------------
An HTML attachment was scrubbed...
Download