< bitcoin-git>
bitcoin/master c84ff23 fanquake: build: ignore macOS make deploy artefacts & add them to clean-local
< bitcoin-git>
bitcoin/master 8ee572f fanquake: Merge #16371: build: ignore macOS make deploy artefacts & add them to clea...
< bitcoin-git>
[bitcoin] fanquake merged pull request #16371: build: ignore macOS make deploy artefacts & add them to clean-local (master...ignore_osx_volname) https://github.com/bitcoin/bitcoin/pull/16371
< aj>
BlueMatt: 420x100? blaze it!
< roconnor>
Acutally this year I decided to adjust my coding width to 132 characters. I figure if it can fit on a VT100 can display it 132 characters on a line, that's good enough for me, punch card users be damned.
< roconnor>
(er, my copyediting of that statment didn't really work out).
< provoostenator>
fanquake: that happened to me as well as week ago. The most annoying part is that when Travis stops running on your PRs, Github doesn't mark that as CI failure.
< provoostenator>
Emailing their support helped, though it took a day in my case.
< instagibbs>
yeah they're pretty fast whitelisting
< elichai2>
People have talked about Github's CI, apperantly I got in to the beta, hope to try it soon and give feedback on how is it compared to Travis/Appveyor :)
< jonasschnelli>
Good to know elichai2!
< elichai2>
OS wise the docs says they support Windows Server 2019/Windows Server 2016 R2/Ubuntu 18.04/Ubuntu 16.04/macOS X Mojave 10.14
< stevenroose>
I'm trying to run Core's functional test suite of the 0.18 branch for Elements (I made the few changes to address the correct binaries and directories etc). I'm getting this error:
< stevenroose>
test_framework.test_node.FailedToStartError: [node 0] bitcoind exited with status -11 during initialization
< stevenroose>
Which is super strange. -11 is RPC_WALLET_INVALID_LABEL_NAME.
< phantomcircuit>
stevenroose, your question is out of scope for this channel
< stevenroose>
Which is only invoked when getnewaddress, setlabel, getreceivedbylabel, addmultisigaddress or getaddressesbylabel is called.
< stevenroose>
Well, my question was gonna be if the test_framework code ever invokes any of those RPC methods.
< stevenroose>
I grep'd only found getnewaddress but never with a label attached.
< stevenroose>
phantomcircuit: sorry if this is out of scope.. nvm them. just puzzled how I could get a RPC_WALLET_INVALID_LABEL_NAME by invoking create_cache.py
< jnewbery>
stevenroose: RPC_WALLET_INVALID_LABEL_NAME is a JSON error returned by RPC methods. It's not an exit code for the bitcoind binary
< provoostenator>
Also note that a lot of non-wallet tests do use a wallet.
< MarcoFalke>
[12:05] <stevenroose> test_framework.test_node.FailedToStartError: [node 0] bitcoind exited with status -11 during initialization
< MarcoFalke>
This is not an RPC error, but the exit code of bitcoind
< MarcoFalke>
Usually a segfault, assertion error, InitError, ...