-
Notifications
You must be signed in to change notification settings - Fork 648
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bump fc and fix node #1405
bump fc and fix node #1405
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that is correct. The FC PR to fix the warnings also included the removal of deprecated methods. The difference between rand_pseudo_bytes and rand_bytes was small, and rand_pseudo_bytes was not recommended. Hence, the deprecation.
Compiled with Boost 1.67 / OpenSSL 1.10 / Ubuntu 18.04
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can merge it IMHO. Thanks !
Why docker cloud build is failing? |
How to see docker cloud's logs ? After clicking on |
I think it timed out or something, in the logs i see "Waiting for logs..." and nothing more. The duration of the failed build was 2 hours, generally successful builds take an hour. I restarted now, lets see how it goes. |
sometimes |
Travis is faster and have less issues in general, need to be restarted on each new pull request to populate the cache @pmconrad added to it, only fails when the pull is new. @cogutvalera you need to have a dockercloud account, then go to https://cloud.docker.com/u/bitshares to see the builds of bitshares-core. |
@oxarbitrage Thanks ! I've |
It keeps running into "Build canceled" after about 50%. Perhaps compilation of database.cpp eats too much memory. |
Perhaps try cmake-option |
3fb6c44
from cmake command in dockerfile as it will not fix the dockercloud issue.
tried but failed at the same place. |
This is unrelated to this particular code as I think we should try to fix it outside the context of this pull request to don't start adding several tests and unrelated commits to it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
UNITY stuff retracted. Approving again to verify that dockercloud does not error out.
While doing some development i bumped FC to the last version and when doing so I noticed that it will not build with error:
This is due to changes introduced here: bitshares/bitshares-fc#84
The same compiler provided a hint to fix it after the error msg:
This pull request bumps FC and add the fix changing
rand_pseudo_bytes
torand_bytes
. I am honestly not totally sure about the implications but just know this way it will build.Appreciate your comments to confirm if this is a good fix or if need to do it different. Alternative can be to bring back
rand_pseudo_bytes
or revert the FC pull fully(as changes were done only to fix some warnings)