< luke-jr>
I guess I misread the RUN_TESTS part, but what does the GOAL change imply?
< sipa>
i think it just means we don't build the installer
< Chris_Stewart_5>
sipa: Do you have any thoughts on property based checking? I'm starting to integrate it into a library I'm writing and it seems it would be useful in Bitcoin Core. I was looking at this library for C++
< Chris_Stewart_5>
Will do. Is it best to submit a pull request with a [WIP] on it, or just develop on my own branch and submit a pull request later on?
<@wumpus>
that's really up to you
<@wumpus>
in both cases you develop on your own branch, in the former cast it has somewhat more visibility, which is useful if you want other people's opinions about things
< Chris_Stewart_5>
good point, another question, is there any vetting process for dependencies that are being added to our src files?
< Chris_Stewart_5>
I get that this one isn't as crucial since it is test dependecy, but it would be important if a dependency was affect src files
< Chris_Stewart_5>
src meaning everything but the child test dir
< sipa>
Chris_Stewart_5: if you add a dependency, you need to make sure that it's available in the depends system (see the depends subdir), so that it's available to the deterministic build system
< Chris_Stewart_5>
Hmm ok. I'm just starting to look at this stuff. Doesn't look quite as simple as maven on the JVM :-). Cory is the build expert right?
< sipa>
Chris_Stewart_5: indeed
< sipa>
Chris_Stewart_5: deterministic building is a pretty new concept, and there are few tools available to do it for you, so it's all pretty custom
< sipa>
Chris_Stewart_5: though, generally don't worry about that, if it's useful we'll find a way to integrate it
< Chris_Stewart_5>
sipa: Ok, I'm just going to hack it together to start and submit a pull request testing a few simple properties
< GitHub4>
[bitcoin] wbinns opened pull request #8224: readme: Revise 'an experimental new' phrasing in reference to Bitcoin (master...binns-update-readme) https://github.com/bitcoin/bitcoin/pull/8224
< Chris_Stewart_5>
So i've created a file inside of package giving the instructions of how to build the library, what is the next step? I've tried to add the header to the test file and it fails.
< Chris_Stewart_5>
I've also added it to the first line in packages.mk