sb0 changed the topic of #m-labs to: ARTIQ, Migen, MiSoC, Mixxeo & other M-Labs projects :: fka #milkymist :: Logs http://irclog.whitequark.org/m-labs
<_florent_> rjo/sb0: the jesd core is here: https://github.com/m-labs/jesd204 (I put it there but maybe you want to integrate it in artiq?, feel free to do what you want)
<_florent_> rjo/sb0: here is the design I'm using for testing: https://github.com/enjoy-digital/litejesd204b-ad9154-demo/blob/master/kc705_jesd.py, for your design just remove the Lite prefix
<_florent_> rjo/sb0: the digital path and outputs are configured in my ad9154 setup, but CGS pass, ILAs too and data seems to be transmitted correctly
<_florent_> rjo: the core should be easy to use: set enable to 0, configure the ad9154, set enable to 1, look at the ready signal
<_florent_> rjo: to send data, use jesd_core.transport.sink.converter0 to converter3
<_florent_> rjo: converterX is 32bits, LSB if the first sample, MSB the second one
<_florent_> rjo: feel free to ping me when you'll be integrating it or testing it
<sb0> did you test the migen version?
<_florent_> not on board but the simulations are passing
<sb0> rjo, why did you write ad9154_read & friends in C instead of ARTIQ-Python?
<sb0> what about putting the jesd core into misoc? that's one package less to take care of
<sb0> artiq would be too specific, there are other uses for this core
<whitequark> sb0: I also want to kick I2C into ARTIQ Python
<whitequark> instead of Rust
<sb0> whitequark, ok. i propose doing those things after the basic rust port works and background rpcs are done
<sb0> can the rust runtime keep using the C versions of i2c and dds until background rpcs are done?
<sb0> what I'd propose is: get the rust runtime to work possibly keeping C parts, background RPCs + #560, finalize the rust runtime, in that order
<whitequark> yes
<whitequark> that's exactly what I'm doing
<whitequark> well, I would like to do TMPU as early as possible because stack overflows have proved to be extremely obnoxious to debug
<whitequark> (on comms CPU)
<whitequark> sb0: I have a weird problem with lwip
<whitequark> I'm trying to transmit a large file via TCP and lwip appears to simply drop some packets at random
<whitequark> ok, now it is just stuck entirely...
<sb0> again? does it happen with the old C runtime too?
<whitequark> no idea, the C runtime doesn't have that code
<sb0> it baffles me so many people seem happy with lwip. it's been a consistent shit show since we started using it
<whitequark> I'm trying to add a self-update functionality to the Rust runtime because the UART speed is shit
<whitequark> and the openocd scripting is unreliable
<sb0> use tftp netboot?
<whitequark> but when I transmit 380kB of runtime, only 260 or so come back
<whitequark> bah, that's even worse.
<sb0> it's faster than uart
<whitequark> hrm
<whitequark> how do I use that?
<sb0> the BIOS supports it. the IPs are hardcoded though so you need to rebuild it
<sb0> then you can reset the board with openocd (which is reliable AFAICT)
<whitequark> I'll just try to fix this lwip junk instead
<whitequark> it's reliable on its own
<whitequark> it's not reliable when used via ssh
<sb0> works fine for me
<sb0> what problem are you having via ssh?
<whitequark> that's because you don't have a crappy ADSL link
<sb0> reset is only one command btw
<whitequark> yes, and after that command I have enough latency that the invocation of flterm misses the cookie
<sb0> speaking of crappy links, are you also having problems with the lab wlan?
<whitequark> nope
<whitequark> what sort of problem?
<sb0> it has regular random periods of several seconds during which all packets are dropped
<whitequark> haven't hit that once
<whitequark> so it seems like an issue with your STA. what wifi card and what does dmesg say?
<sb0> on client side, nothing in dmesg, works fine on other networks. but it's some crappy obscure broadcom chip. i'll do more testing with another card...
<whitequark> ah, broadcom
<whitequark> so lwip used to just miss some packets. now what happens is that it accepts like fifteen and then stops getting any input forever
<whitequark> bah. whatever. I already wasted more time on this than I would have saved with faster boot
<whitequark> if this breaks RPCs at some point I'll simply write a TCP/IP stack that's less shitty
<whitequark> which will probably also be faster than fixing lwip.;
<sb0> what about picotcp?
<whitequark> no idea, is that less bad?
<sb0> never tried it
<cr1901_modern> Any idea why lwip is breaking so badly?
<whitequark> Adam Dunkels wrote it
<cr1901_modern> I don't know who he his, but I do notice another project by him (Contiki) that you dislike
<whitequark> I dunno about the guy but all his code is atrocious.
* whitequark shrugs
<whitequark> one of the best features Rust has yet is its macro system
<whitequark> not only it is hygienic but also it lets you define function- or even block-local macros, and refer to identifiers from outer scope with proper lexical rules
<cyrozap> In Migen, what's the purpose of the "_connectors" array? I can't access any of the connectors from "platform.request(connector)".
<sb0> cyrozap, look at the examples in artiq
<cr1901_modern> cyrozap: Also look at the mercury platform
<cr1901_modern> I have "helper functions" that use the "_connectors" array
<cr1901_modern> I confess I don't really understand hygeine well, but why isn't "refer to identifiers from outer scope with proper lexical rules" a side effect of a hygenic macro system in and of itself?
<cyrozap> sb0, cr1901_modern: Thanks, I'll check those out.
<whitequark> well, as far as I understand, a basic hygienic macro system would only prevent the macro scope and the non-macro scope from interacting
<whitequark> I haven't expected it to actually take up identifiers from outer scopes when defined within functions etc
<whitequark> it was a really nice discovery (although it is of course trivial to implement witin the framework that rust uses for hygiene)
<cyrozap> Also, can someone please tell me what the acronym "CSR" means? Search engines are giving me a lot of different answers and I can't find it documented anywhere in MiSoC/Migen.
<sb0> configuration/status register
<cr1901_modern> whitequark: So the gist is Rust lets you refer to variables outside the scope of a macro, but also will ensure that names that conflict in and out-of-macro scopes don't interact with each other?
<cyrozap> sb0: Thanks!
<whitequark> cr1901_modern: yup
<cr1901_modern> cyrozap: It's not well-documented how it works IMO. To make life easy, subclass from AutoCSR and add your CSR registers as submodules. MiSoC will use introspection to automatically generate the correct Verilog code
<whitequark> cr1901_modern: http://hastebin.com/kigijalefa.rs
<whitequark> see the "data" identifier
<sb0> mithro, how is the documentation of that coming along btw?
<cr1901_modern> whitequark: Wow, that's really cool!
<mithro> sb0: I still have half written stuff here, it is on my TODO list
<cr1901_modern> mithro: That was NOT a slight at you :P. I didn't know someone was working on it.
<cr1901_modern> cyrozap: I screwed up. Don't add CSR Registers as submodules. Just add them as member variables.The AutoCSR implementation in MiSoC will by default recurse into submodules looking for members with the CSRStatus/CSRStorage type.
<mithro> I even have a post-it note on my wall with that task on it :-P
<cyrozap> cr1901_modern: I was just wondering what the term meant, but I'm still pretty clueless as to what it is or what it's used for.
rohitksingh_work has joined #m-labs
<cyrozap> Aaaand I still can't figure out how to use connectors...
<sb0> you define new IOs (via extensions) that use pin names that correspond to connector pin names instead of FPGA pin names
<sb0> this way you can have a single definition for a FMC card that you use for different FPGA boards
<whitequark> ok, basic two-way RPCs work...
<whitequark> now to implement the rest of the types
<cyrozap> sb0: Oh, I see. Thanks again!
<rjo> _florent_: ack.
<rjo> _florent_: i'll give it a try
<rjo> _florent_: but it's not using the QPLL yet, right? 6.6G max?
<rjo> sb0: that would have been more code to write.
<sb0> really?
<sb0> but it would be good to keep the runtime and number of syscalls small
mumptai has quit [Remote host closed the connection]
<rjo> sb0: sure. but the number of syscalls would increase. there would be more functions to expose.
<sb0> in the short term maybe, but not after every SPI chip ever used in ARTIQ is implemented there
<sb0> and wasn't the DAC SPI supposed to be connected to RTIO?
<rjo> with the current way the csr access functions are generated, the code size would increase with ever bus.
<rjo> *every
<rjo> yes. over rtio it wouldn't be any code. but i'd like to roll this without rtio first. switching later is not much work.
<rjo> we'd have to write a bus mux in the runtime if there are many buses and they are accessed through non-RTIO.
<sb0> how many buses would there be in a typical system?
<sb0> I can see the problem of many different chips as the number of supported boards increases, but the problem of lots of buses?
<rjo> non-rtio spi busses? don't know.
<rjo> if they are rtio, it's not a problem at all.
<rjo> _florent_: while i integrate this i am noticing a few things that i'd like to discuss. ok to file issues at that repository?
key2 has joined #m-labs
<rjo> _florent_: you get a few hours of sleep ;) i'll just plow ahead.
<_florent_> rjo: yes sure, you can create issues in the repository
bentley` has quit [Ping timeout: 272 seconds]
<rjo> _florent_: anything wrong with using the refclk undivided (not the IBUFDS_GTE ODIV2 output but the O, always assuming i am changing the other signals approriately)?
<GitHub8> [artiq] whitequark pushed 4 new commits to master: https://git.io/vPcbp
<GitHub8> artiq/master 3362887 whitequark: Rust: implement receiving for all RPC types.
<GitHub8> artiq/master 516c6fd whitequark: language: export TTuple.
<GitHub8> artiq/master 5a63006 whitequark: Rust: implement sending for all RPC types.
<sb0> whitequark, what is TTuple?
<sb0> just the normal Python type? how would you use TTuple in user code?
<whitequark> like TInt32
<whitequark> and TList
<whitequark> I needed it for some more tests that I wrote
<whitequark> and it's probably useful in general
<rjo> whitequark: why is the openocd scripting not reliable?
<whitequark> rjo: not by itself but only over slow ssh link.
<whitequark> since there can be a large delay between core reset and flterm invocation
<whitequark> this can probably be fixed by adding more shell scripts but I dislike the uploading tool I have enough as it is
<rjo> whitequark: right. i am also seeing that without ssh link. just because flterm startup can be slow on that machine with stuff running.
<whitequark> ah
<whitequark> then shell scripts won't even help
<rjo> you can leave flterm running. and do openocd somewhere else
<rjo> but that's also too many terminals for me.
<whitequark> currently I have an automated upload script that does scp, openocd reset, then flterm
<rjo> whitequark: is the scope still connected to the dac by the way?
<whitequark> I think it should be
<rjo> nice.
<whitequark> I disturbed some of the connections but I put them back
<rjo> let's hope i don't crash the scope...
<whitequark> I should get an esp8266 or whatever's fashionable so I could start the A/C remotely
<rjo> yeah. for me its the same tooling for development there.
<whitequark> you develop on lab., right?
<rjo> i have been constantly on the lookout for a nice energy harvesting 6LowPAN generic device.
<rjo> for at least five years now.
<rjo> yes. i test on lab.
<whitequark> re 6LowPAN: yes. I have been at some point earlier planning to design a board myself, but lost interest since
<rjo> i have built stuff with the nordic semi bluetooth things. but they are too closed and volatile for me.
<rjo> and afaict the market is still way too fragmented
<whitequark> yeah, I'm looking forward to when the hype dies out
<whitequark> there are very small and cheap 220V->3V3 modules
<rjo> and there are few good combinations of harvesting with chips.
<whitequark> I'm not very concerned with harvesting
<whitequark> or http://hken.rs-online.com/web/p/embedded-switch-mode-power-supplies-smps/7864725/ which is small enough you can probably fit it in a socket
<bb-m-labs> build #101 of artiq-board is complete: Success [build successful] Build details are at http://buildbot.m-labs.hk/builders/artiq-board/builds/101
<rjo> sure. that's one way of harvesting/tapping. but if you rely on that you could just as well do power-line-communication.
<whitequark> I'm not fond of PLC
<rjo> it's horrible. it polutes the spectrum.
<whitequark> it probably works in model environment, but not when there's a cheap fridge nearby
<whitequark> much less a welder or something worse
<whitequark> that too.
<rjo> but if you harvest by temperature diff or solar or vibration, you save a bunch of cables, you can measure things without any wires etc. for physics labs, harvesting IoT stuff would be an absolute killer application.
<whitequark> mostly I'm thinking of esp8266 now because it's clearly kind of crappy (e.g. no docs for wifi part, blobs) but at the cost and size of it, even if espressif dies tomorrow, it's still worth the miniscule amount you're spending
<whitequark> some operational cost since a serious org wouldn't want that on its network, sure.
<rjo> ... you can just sprinkle these devices in your lab.
<whitequark> sure, so a separate network for them and all's golden
<rjo> yep. agreed.
<whitequark> they're $1.65 per board on taobao.
<whitequark> really doesn't get any cheaper...
<bb-m-labs> build #989 of artiq is complete: Failure [failed python_unittest_1] Build details are at http://buildbot.m-labs.hk/builders/artiq/builds/989 blamelist: whitequark <whitequark@whitequark.org>
<whitequark> sb0: I got offered what I know is a decent TCP stack, under MPL
<whitequark> although it misses a "general-purpose retransmit queue" (no idea what it is)
<sb0> mpl?
<whitequark> GPLv3-compatible license
<sb0> details? how do you know it's decent?
<rjo> whitequark: nice. link? but that queue sounds like it would be needed for tcp retrans.
<sb0> does it mean when a TCP packet is dropped, the stack craps out?
<sb0> or is it a toy stack like uIP where there is only one in-flight packet?
<rjo> by they way. i got the picotcp people to relicense as gplv3. in case you want to try that.
<whitequark> sb0: (how do I know it's decent) written by a guy with a history of shipping high-quality code
<whitequark> (retransmit queue) I asked and this means the stack doesn't currently record the data for retransmission
<whitequark> i.e. it will ask the application "retransmit from this position"
<whitequark> doesn't seem to be a show-stopper
<whitequark> rjo: not released right now
<whitequark> but he will release it publicly if it is of any use to us.
<rjo> in rust or c?
<whitequark> c
<whitequark> with some formal verification via KLEE (although not the tcp state machine)
<rjo> ppp?
<whitequark> lol nope
<rjo> would kill pipistrello.
<whitequark> does picotcp have ppp?
<rjo> yes. iirc
<whitequark> right, it does
<rjo> but if we relicense artiq as lgpl, then picotcp won't help.
<whitequark> I see
<rjo> anyway. i'd leave the choice of network stack to you. take what fits best.
<whitequark> ok, I'm going to look at the code of this thing first
<whitequark> picotcp isn't awful at the first glance but I've no idea how reliable that is
<rjo> no idea either. they seem really proud of it.
<whitequark> why does TASS of Belgium write a TCP/IP stack in the first place?
<whitequark> oh, it's some other TASS
<rjo> != tass.ru
<rjo> yes. its altran.
<whitequark> ok, that makes it less weird.
rohitksingh_work has quit [Read error: Connection reset by peer]
sandeepkr has joined #m-labs
<GitHub23> [artiq] whitequark pushed 5 new commits to master: https://git.io/vPCCW
<GitHub23> artiq/master 226fa72 whitequark: Rust: implement exceptional kernel termination....
<GitHub23> artiq/master 84214ab whitequark: Rust: don't panic when loading a kernel twice in same session.
<GitHub23> artiq/master 6b2789e whitequark: test: add more RPC tests.
<whitequark> ok, so now all coredevice tests except the 1MB one pass
<whitequark> the reason is that the 1MB test used to just write into the buffer but now the buffer is allocated
<whitequark> on heap
<whitequark> and the allocator (I think) is absolutely not designed for that
<whitequark> so I'm just going to add streaming requests and that should suffice
<whitequark> technically speaking, it will be removing code until streaming requests work :D
<rjo> whitequark: master currently assumes that there are always DDS connected. could you fix that?
<rjo> whitequark: it needs the CSR constants and if the number of dds is zero, it doesn't compile.
rohitksingh has joined #m-labs
<bb-m-labs> build #990 of artiq is complete: Failure [failed python_unittest] Build details are at http://buildbot.m-labs.hk/builders/artiq/builds/990 blamelist: whitequark <whitequark@whitequark.org>
<whitequark> rjo: I, uh, could not
<whitequark> there's some issue with the way #[cfg]s are handled
<whitequark> but I've planned look into this a bit later, yes
<whitequark> I'm very unhappy with how the current CSR system is built to work with a cpp-style conditional compilation, such as branching over presence of individual registers
<rjo> ok. i had the impression that that part should be done more like moninj plugins anyway.
<whitequark> moninj is currently always built in
<whitequark> did you mean the analyzer?
<rjo> i think it appears in both.
<whitequark> hm
<whitequark> I'm not sure what you mean
<rjo> maybe analyzer. don't remember exactly. there was a dds ftws vector somewhere.
<whitequark> that was moninj, and the rust port will currently also fail to compile
<rjo> what i mean is moving the dds specific stuff out of moninj and have the later be agnostic to the data and the channel type.
<rjo> same for analyzer i guess.
<whitequark> seems tricky as it is currently quite ad hoc
<rjo> exactly.
<whitequark> but the problem isn't the coupling to dds per se but that what i expect to work in conditional compilation clauses, doesn't
<rjo> yes. those seem to be two somewhat different problems.
<whitequark> ysionneau: can you briefly explain how your flash storage works?
<GitHub183> [artiq] jordens pushed 5 new commits to phaser: https://git.io/vPC2H
<GitHub183> artiq/phaser 4d87f0e Robert Jordens: phaser: instantiate jesd204b core, wire up
<GitHub183> artiq/phaser 1193ba4 Robert Jordens: ad9154: merge csr spaces
<GitHub183> artiq/phaser f62d600 Robert Jordens: README_PHASER: update
<ysionneau> whitequark: its a key/value storage, do you want to know the record layout?
rohitksingh has quit [Read error: Connection reset by peer]
<whitequark> yes
<whitequark> I'm going to reimplement it in Rust probably
<ysionneau> first field is the record size, if it's all 0xFFFFFFFF then it means there is no more records
<ysionneau> next field is the key, its a NULL termiated string
<ysionneau> all the remaining bytes is the stored value
rohitksingh1 has joined #m-labs
<whitequark> I see, thanks
<ysionneau> to modify an already exiting key you can add a new record with the same key name
<ysionneau> to delete a key, you can add a new record with the same key name but record len of 0
<ysionneau> when the flash sector is full, this is detected and there is a try to flush duplicates and remove empty records
<whitequark> so it's a log-structured filesystem
<ysionneau> yes
<rjo> _florent_: that's where i am with the current code.
<GitHub148> [artiq] jordens pushed 1 new commit to phaser: https://git.io/vPCVs
<GitHub148> artiq/phaser 4390fea Robert Jordens: phaser status: add statusmode stuff for serdes pll
<_florent_> rjo: ok, CGS is good
<_florent_> but it seems ILAS is not received
<rjo> _florent_: well. sometimes it ends up being just 0x0e or 0x0c.
<_florent_> to you see SYNC signal going high?
<rjo> _florent_: don't know. will check tomorrow probably.
<_florent_> rjo: OK, I also notice this behaviour ( 0x0e or 0x0c on CODEGRPSYNC)
<rjo> _florent_: i gotta go now. if you find some time, could you cross-check that i understood your code correctly?
<_florent_> rjo: but once I started transmitting ILAS, I always got 0x0f....
<rjo> _florent_: i guess that could also be because of the sticky stuff and because we don't reset it properly.
<_florent_> rjo: ok I'll look at your code, also have to go
<GitHub142> [artiq] whitequark pushed 2 new commits to master: https://git.io/vPCVF
<GitHub142> artiq/master 5428a86 whitequark: runtime: the Rust runtime is now just the runtime.
<GitHub142> artiq/master bcdbd00 whitequark: runtime: remove unnecessary null bytes from session protocol.
<rjo> _florent_: ack. see you tomorrow!
<bb-m-labs> build #991 of artiq is complete: Failure [failed lit_test] Build details are at http://buildbot.m-labs.hk/builders/artiq/builds/991 blamelist: whitequark <whitequark@whitequark.org>
<rjo> _florent_: from the dac status output i'd think sync is still "active"
<larsc> _florent_: regarding the CODEGRPSYNC register, the content seems to be random when it is trying to get lock
<larsc> like I tried this a few days ago and each time I re-synced it was different during the sync period
<larsc> but it will stay constant while sync is asserted
<larsc> so if it is changing that means cgs worked
<larsc> and it failed at some other point
<larsc> and then re-tried
<GitHub16> [artiq] whitequark pushed 1 new commit to master: https://git.io/vPCr6
<GitHub16> artiq/master d619336 whitequark: test: update libartiq_support for changed personality ABI.
<bb-m-labs> build #992 of artiq is complete: Failure [failed lit_test] Build details are at http://buildbot.m-labs.hk/builders/artiq/builds/992 blamelist: whitequark <whitequark@whitequark.org>
bentley` has joined #m-labs
<GitHub137> [artiq] whitequark pushed 1 new commit to master: https://git.io/vPC1v
<GitHub137> artiq/master edafb08 whitequark: test: fix d6193365.
rohitksingh1 has quit [Read error: Connection reset by peer]
rohitksingh has joined #m-labs
<bb-m-labs> build #102 of artiq-board is complete: Success [build successful] Build details are at http://buildbot.m-labs.hk/builders/artiq-board/builds/102
<bb-m-labs> build #993 of artiq is complete: Failure [failed] Build details are at http://buildbot.m-labs.hk/builders/artiq/builds/993 blamelist: whitequark <whitequark@whitequark.org>
mumptai has joined #m-labs
_whitelogger_ has joined #m-labs
whitequark has joined #m-labs
_whitelogger has quit [Remote host closed the connection]
<whitequark> sb0: interesting. I appear to be hitting some bad edge case in lwip
<GitHub55> [artiq] whitequark pushed 1 new commit to master: https://git.io/vPC57
<GitHub55> artiq/master 557bc4b whitequark: runtime: remove unnecessary buffering.
<whitequark> hm
<whitequark> no, that was just my own stupidity
<GitHub0> [artiq] whitequark pushed 1 new commit to master: https://git.io/vPCFI
<GitHub0> artiq/master b4bbf44 whitequark: runtime: buffer writes of RPC data....
<bb-m-labs> build #103 of artiq-board is complete: Success [build successful] Build details are at http://buildbot.m-labs.hk/builders/artiq-board/builds/103
<bb-m-labs> build #994 of artiq is complete: Failure [failed] Build details are at http://buildbot.m-labs.hk/builders/artiq/builds/994 blamelist: whitequark <whitequark@whitequark.org>
ylamarre has joined #m-labs
<GitHub96> [artiq] whitequark pushed 1 new commit to master: https://git.io/vPCpb
<GitHub96> artiq/master b52ecda whitequark: runtime: make memory map saner.
<bb-m-labs> build #104 of artiq-board is complete: Success [build successful] Build details are at http://buildbot.m-labs.hk/builders/artiq-board/builds/104
<bb-m-labs> build #995 of artiq is complete: Failure [failed] Build details are at http://buildbot.m-labs.hk/builders/artiq/builds/995 blamelist: whitequark <whitequark@whitequark.org>
<GitHub83> [conda-recipes] whitequark pushed 3 new commits to master: https://github.com/m-labs/conda-recipes/compare/b0d7ef147720...a46b6741d990
<GitHub83> conda-recipes/master 5236204 whitequark: llvm-or1k: bump.
<GitHub83> conda-recipes/master a46b674 whitequark: rust-core-or1k: bump.
<GitHub83> conda-recipes/master f1bff6a whitequark: rustc: bump.
<whitequark> bb-m-labs: force build --props=package=llvm-or1k conda-lin64
<bb-m-labs> build forced [ETA 32m54s]
<bb-m-labs> I'll give a shout when the build finishes
<whitequark> bb-m-labs: force build --props=package=rustc conda-lin64
<whitequark> bb-m-labs: force build --props=package=rust-core-or1k conda-lin64
<bb-m-labs> The build has been queued, I'll give a shout when it starts
<bb-m-labs> The build has been queued, I'll give a shout when it starts
<bb-m-labs> build #105 of artiq-board is complete: Success [build successful] Build details are at http://buildbot.m-labs.hk/builders/artiq-board/builds/105
<bb-m-labs> build #996 of artiq is complete: Failure [failed] Build details are at http://buildbot.m-labs.hk/builders/artiq/builds/996 blamelist: whitequark <whitequark@whitequark.org>
_whitelogger has joined #m-labs
whitequark has quit [Ping timeout: 256 seconds]
_whitelogger_ has quit [Remote host closed the connection]
whitequark has joined #m-labs
<bb-m-labs> build #225 of conda-lin64 is complete: Success [build successful] Build details are at http://buildbot.m-labs.hk/builders/conda-lin64/builds/225
<bb-m-labs> build forced [ETA 45m21s]
<bb-m-labs> I'll give a shout when the build finishes
ylamarre has quit [Quit: ylamarre]
<bb-m-labs> build #226 of conda-lin64 is complete: Failure [failed conda_build] Build details are at http://buildbot.m-labs.hk/builders/conda-lin64/builds/226
FabM has quit [Ping timeout: 272 seconds]
FabM has joined #m-labs
rohitksingh has quit [Quit: Leaving.]
sandeepkr_ has joined #m-labs
sandeepkr has quit [Ping timeout: 256 seconds]
kuldeep has quit [Ping timeout: 265 seconds]
kuldeep has joined #m-labs