IRC logs for #buildstream for Thursday, 2018-04-12

*** jjardon[m] has joined #buildstream00:11
*** ernestask[m] has joined #buildstream00:11
*** ernestask[m] is now known as Guest4517300:12
*** m_22[m] has joined #buildstream00:24
*** bochecha has joined #buildstream00:28
*** cgmcintyre[m] has joined #buildstream00:49
*** mattiasb has joined #buildstream00:57
*** waltervargas[m] has joined #buildstream01:03
*** inigomartinez has joined #buildstream01:06
*** connorshea[m] has joined #buildstream01:15
*** pro[m] has joined #buildstream01:20
*** theawless[m] has joined #buildstream01:20
*** alatiera has joined #buildstream01:32
*** asingh_[m] has joined #buildstream02:34
*** abderrahim[m] has joined #buildstream02:41
*** kailueke[m] has joined #buildstream02:43
*** segfault3[m] has joined #buildstream02:43
*** ptomato[m] has joined #buildstream03:06
*** tristan has quit IRC03:17
*** jsgrant_ has joined #buildstream03:38
*** tristan has joined #buildstream03:48
*** jsgrant has joined #buildstream03:48
*** awacheux[m] has joined #buildstream04:08
*** jsgrant has quit IRC04:10
*** jsgrant_ is now known as jsgrant04:10
*** jsgrant_ has joined #buildstream04:14
*** ssssam[m] has joined #buildstream05:00
*** Guest45173 is now known as ernestask[m]06:31
*** tristan has quit IRC07:21
*** ironfoot has quit IRC07:55
*** ironfoot has joined #buildstream07:57
*** toscalix has joined #buildstream07:58
*** dominic has joined #buildstream08:13
gitlab-br-botbuildstream: issue #313 ("empty /buildstream/build directory when dropping to a shell after a failed build") changed state ("closed") https://gitlab.com/BuildStream/buildstream/issues/31308:30
*** jonathanmaw has joined #buildstream08:44
*** valentind has quit IRC08:52
*** noisecell has joined #buildstream09:05
*** aday has joined #buildstream09:10
gitlab-br-botbuildstream: merge request (jmac/rename_size_request->master: WIP: Logging widgets: Rename 'size_request' to 'prepare') #382 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38210:28
jjardonHi! can someone review https://gitlab.com/BuildStream/buildstream-docker-images/merge_requests/15 ? for aarch64 docker images :)10:38
tlaterDid jmac ask about these recently?10:40
tlaterSomeone really wanted to run buildstream on aarch6410:41
jmacI'm actually on armhf but I'll review them anyway10:45
jjardontlater: I actually need them10:48
* tlater just recalled someone else needing other-arch docker images10:49
jjardontlater: bst runs just fine in aarch64, but this will improve times in our CI, as we do not have to install aditional packages as part of the CI (we are using stick Fedora27 at the moment)10:50
jmacThat was probably me10:50
jjardonstock*10:50
gitlab-br-botbuildstream: merge request (cmake-ninja->master: WIP: plugins/elements/cmake.yaml: allow using ninja instead of make (#279)) #362 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/36211:01
jjardondoes buildstream have aarch64 runners at all?11:01
jmacjjardon: !15 looks good to me, you might want someone else to have a look as well though11:02
jjardonthanks jmac11:02
*** tristan has joined #buildstream11:07
tristanjuergbi, sorry I was on my handphone at the time commenting on terminator() issue in https://gitlab.com/BuildStream/buildstream/merge_requests/37511:11
tristanwas that clear enough ?11:11
juergbitristan: my question is why do we do the fast exit11:12
juergbiwouldn't an exception based approach via sys.exit() be simpler?11:12
tristanthe main process explicitly sends sigterm to child processes, which python is not miraculously smart about (it's not like it's going to raise some kind of SIGTERMException)11:12
tristanjuergbi, do you know of a way to have a signal handler cause python to raise an exception in it's regular thread of execution wherever it is ?11:12
juergbiaiui, by default Python indeed doesn't do anything smart, however, if you call sys.exit() in the signal handler, it raises SystemExit exception11:13
juergbiand that's raised in the regular context, not just in the signal context, afaict11:13
tristanalso, remember that the child threads do long standing calls, they cannot run an event loop to handle the exception11:13
tristanjuergbi, nope, we call sys._exit() to avoid this, remember that a SystemExit exception would be raised *in the signal handler*11:14
juergbiyes, it wouldn't be event loop based, it would be based on exception handling11:14
tristannot in the thread of execution11:14
tristanis it raised in regular context ?11:14
tristanjuergbi, it could be plausible to rearchitecture everything that way, if it really works11:14
juergbitristan: see https://stackoverflow.com/a/2457467211:14
tristanwe'd have to make sure it's not also raised in the signal handler11:15
juergbiI don't have first hand experience, though, so maybe I'm missing something11:15
juergbiand multiprocessing.Process already makes sure to call os._exit() to avoid running parent finalizers in the child11:15
tristanI know that we have issues with doing some things in a signal handler, and we really shouldnt be doing anything like initiating any log messages from there11:16
tristanwe explicitly sys._exit() to avoid python trying to be smart and cleanly close stuff11:16
tristanjuergbi, I have a *very* low level of trust of python doing anything sensible if you try to do much stuff in a signal handler; unless there is some documented thread synchronization where python will somehow raise the exception in the correct thread of execution, and even then; this is experiment at your own risk territory11:18
gitlab-br-botbuildstream: merge request (unused-workspaces->master: _pipeline.py: correct reporting of unused workspace) #363 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/36311:18
tristanit would certainly be nice to have the sigterm handler raise an exception in the current thread of execution, though11:19
tristanthat would allow more clean shutdown; I dont see how python's going to do it without running sneaky threads behind your back, though11:19
juergbiyes, we would definitely have to verify that Python indeed does the right thing here11:19
juergbiit's an interpreter, it could have some global exception flag or whatever11:20
tristaneven then, it's very tricky; the code is blocking in long standing calls11:20
tristanright, that would require the interpretor get woken up11:20
tristanby something11:20
tristanwhich it wont11:20
tristanbecause it's blocking most probably in subprocess.call( ... bwrap ...)11:20
tristanfor a long time11:20
juergbiEINTR works for this11:20
juergbiif it's waiting in waitpid() or similar11:21
tristanehhh, sounds delicate; you mean we would have to assume that your code is blocking in a system call ?11:21
tristanand not in some cpu intensive C library call ?11:21
juergbiif it's running in Python code, the interpreter doesn't have to be woken up11:21
juergbiyes, CPU intensive C library call wouldn't be covered11:21
tristanI dont think we can make any assumptions about the nature of what long standing task the python interpretor is blocking on11:22
juergbihttp://transactional.blog/blog/CPython-Signal-Handling/11:23
juergbiinteresting:11:23
juergbi"When you request for a piece of python code to be registered as a signal handler, CPython registers a function that will add your handler to a queue of events to be handled, sets the interpreter state to try and run the pending actions soon, and then returns."11:23
juergbii.e., the whole signal handler is queued11:23
juergbiso the issue already exists as is11:23
juergbithis explains how we can raise exception in the regular context11:24
juergbimy proposal should thus strictly be an improvement but it doesn't fix the C library call case11:25
tristansorry had to step out... it came to mind though that:11:36
tristan<tristan> I dont think we can make any assumptions about the nature of what long standing task the python interpretor is blocking on11:36
tristanthis is me misremembering ^^^^^^^^^^11:36
tristanWe can actually make assumptions, because terminator() is entirely private and not called by plugins afair (although I think I originally intended that plugins would have to use it)11:37
tristanjuergbi, that statement cannot be true, though as far as I can see11:38
tristanotherwise termination of builds would just not work, but they do work11:38
* tristan looks at the blog11:38
juergbiwhy wouldn't they work?11:38
juergbithey don't block in cpu-intensive C library calls11:39
juergbisyscalls should be fine11:39
tristan"sets the interpreter state to try and run the pending actions soon, and then returns."11:43
tristanHow can the interpreter run the pending action when it's blocking in a system call ?11:43
tristanThat means, there is nefarious stuff happening in threads ?11:44
juergbithe system call will return with EINTR11:44
juergbiif automatic restart is not enabled11:44
gitlab-br-botbuildstream: merge request (cmake-ninja->master: WIP: plugins/elements/cmake.yaml: allow using ninja instead of make (#279)) #362 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/36211:44
juergbiEINTR which is a pain when you have to handle it (read, write, etc.) but is useful in this case11:44
tristanThat again sounds strange11:45
tristanbecause we also use it for suspend11:45
juergbithis means suspend is potentially delayed as well11:45
tristanSo when the child process is handling _signals.suspendable(), it will send SIGTSTP to the process tree11:46
tristanjuergbi, yes but it works... and it does so without restarting the bwrap call11:46
juergbibwrap is not a syscall11:46
juergbiwaitpid() or similar is11:46
tristanexecve() is not a system call ?11:46
juergbisure but not blocking11:46
juergbior rather, that's in the child process11:46
tristanof course it's blocking11:46
juergbiin the parent after fork() you run waitpid() or similar11:46
juergbiby default, child runs completely async11:47
tristanah right11:47
tristanso you think python is internally calling EINTR on itself ?11:47
juergbiEINTR is returned by the kernel syscall11:48
tristanAhh, when the program receives *any signal*11:48
juergbipython just needs to handle it in case the signal handler _does not_ raise an exception11:48
juergbiyes, when it returns from the signal handler11:48
tristanI dont know, this sounds like a huge refactor, I would like for it to work that way11:48
tristanpeople are welcome to spend the 2 or 3 weeks testing all the edge cases and experimenting with that11:49
juergbithe thing is that we have race conditions with the current solution11:49
tristannot a huge code change, but a massive behavior change11:49
tristanjuergbi, identifying the race conditions seems to me a much lower bar than redesigning job control11:50
juergbimaybe it would make sense to apply it locally and just use it as base branch for regular bst usage for a while11:50
tristanthat seems to imply there is already a patch, if so, I'm happy to try it !11:51
juergbithere isn't but I can take a look, it might be straight forward11:52
tristanWell, it probably implies changing everything that uses _signals.terminator()11:52
juergbiyes but that's like 10 calls11:53
juergbiand most might already have a corresponding finally, in which case we just have to remove the terminator11:53
tristanAnd I guess it means we register SIGTERM early on and have it raise SystemExit11:53
juergbiindeed11:53
tristanand change all those calls to do except SystemExit:  <do the terminator stuff here instead>11:53
juergbino, use finally11:53
juergbiwell, where it makes sense11:53
juergbihave to look at the individual points in code11:54
tristanRight, most cases it doesnt afaik, the mount things came later, I guess they make sense in finally11:54
tristanthe reason it exists is originally for forceful termination of child tasks11:54
juergbiI'll take a look. Maybe it's easy but maybe I'm missing something11:54
tristanwhich itself could be improved11:54
tristanI spent a long time trying to do the regular send SIGTERM first and wait 5 seconds and then SIGKILL11:55
tristanor 10 seconds or whatever arbitrary amount of time11:55
tristanbut it's currently violently killing stuff because that was not working well11:55
juergbiPR_SET_PDEATHSIG_PROC would be useful for the forceful termination path. however, it's linux only (and has some caveats)11:56
juergbieh, PR_SET_PDEATHSIG. the _PROC variant is not in mainline11:56
tristanreaching for the sky :)11:57
gitlab-br-botbuildstream: merge request (jmac/artifact-receive-profiling->master: Add artifact cache receive profiling domain and instructions.) #383 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38312:02
gitlab-br-botbuildstream: merge request (jmac/artifact-receive-profiling->master: WIP: Add artifact cache receive profiling domain and instructions.) #383 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38312:03
gitlab-br-botbuildstream: merge request (tristan/no-cross-junction-default->master: Disable cross junction tracking by default) #384 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38412:07
tristanjuergbi, so originally we had agreed that project.refs allowing cross junction tracking should probably be disabled by default... I had waited for that expecting to land the addressing of junctioned elements first, but it blew up now that gnome-build-meta depends on freedesktop-sdk12:08
tristanjuergbi, https://gitlab.com/BuildStream/buildstream/merge_requests/384 fixes that...12:08
tristanmaybe we should discuss semantics of this, though12:08
tristanjuergbi, if you care to take a look and give me your opinion on that, that would be great12:09
juergbiwill do12:09
tristanI tried to get a patch out quickly for mcatanzaro et al...12:09
tristanI noticed at the same time that we lack coverage for `bst fetch --track`12:09
tristanbut I'll treat that separately12:09
tristanprobably need a variant of bst build --track across junctions too in tests/frontend/buildtrack.py, which is still ignoring junctions12:10
tristanjuergbi, btw, I'm seeing Element._get_full_name() rendering things like: bootstrap-junction.bst:linux-headers.bst12:19
tristanjuergbi, when tracking in gnome-build-meta, which only has the freedesktop-sdk-junction.bst12:20
tristanI think that the full name is probably supposed to be freedesktop-sdk-junction.bst:bootstrap-junction.bst:linux-headers.bst12:20
tristanso early computation is failing in that regard it would seem12:20
tristanI'm starting to very much dislike how long these names are, though12:21
juergbijunctions are currently globally keyed by junction name12:21
juergbiif you have multiple foo.bst junctions, they are all coalesced (and if there is no top-level override, an error is raised)12:21
tristanjuergbi, I remember commenting that _get_full_name() was not looking as recursive as it should, and I thought your reply was that that part of the naming was resolved earlier at load time12:21
juergbieffective junction names are unique per session12:22
juergbiso there is no need to qualify it12:22
juergbiand in some cases you'd have multiple possibilities otherwise12:22
juergbiand yes, the length would become painfully long12:22
tristanErr, so if I have base.bst as a junction name in gnome-build-meta, and that junctioned project also has base.bst... it will break the moment the project I depend on starts using a different junction name ?12:23
tristanI have been misinforming jonathanmaw in this case, on how we should be supporting addressing, I would have expected to have to type the full path12:23
* tristan supposes that we wont be able to get back completions for junctioned elements very well12:24
tristan*bash completions12:24
tristanmaybe if the checkout is close at hand12:24
juergbihm, yes, may be tricky for completions12:27
juergbito be honest, I actually want to add some more flexibility there12:27
juergbihowever, that's the current semantics12:27
juergbithe reason is to properly handle the case where two subprojects have a common subsubproject12:28
juergbiyou normally don't want two instances of the subsubproject12:28
tristanHmm12:29
tristanyeah this deserves more exploration12:29
juergbiyour MR: it looks fine to me but I haven't touched the plan stuff in a while, so I'm hopefully not missing anything12:30
tristanregarding completions, if the checkout is close we might be able to do it, but seeing how slow things are getting for simple bst shell commands I'm already trying to consider some additional local state12:30
tristanjuergbi, regarding the MR; I was more thinking about semantics of this, and if you have some ideas how it might jibe with future additions of junctioned element addressing12:31
tristanlike, will it be confusing that there is `--track-cross-junction`... but also the ability to explicitly pass `--track junction.bst:element.bst` ?12:31
tristanShould we ignore disabled cross junction tracking ?12:31
tristanShould we rename the option... to reflect that it only has to do with recursion ?12:32
tristanMaybe the word "cross" is enough to express that ?12:32
juergbidifficult to say for me in an abstract discussion12:33
juergbiunfortunately, I might only know the answer once I've used it...12:33
juergbiI would expect 'cross' to suffice12:34
juergbidirectly tracking junctioned element will work without having to specify track-cross-junction, right?12:35
gitlab-br-botbuildstream: merge request (tristan/no-cross-junction-default->master: Disable cross junction tracking by default) #384 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38412:39
tristanjuergbi, that's what I was not entirely sure about... what the natural approach should be :-S12:39
tristanbut I guess that it should work without having to specify it12:39
tristanwithout implying it12:40
tristanwhich might be difficult12:40
juergbiyes, this is what I'd expect as a user, I think12:40
tristanjuergbi, i.e. it would make sense, if say in `bst build --track foo.bst --track junction.bst:bar.bst` .. then we recursively track foo.bst *until a junction*, and recursively track junction.bst:bar.bst *until it hits a recursive junction*12:41
tristanso the behavior is *still* different if you pass -J / --track-cross-junctions ?12:41
tristanwe will need an overhaul of selection of elements in a pipeline with addressing of cross junctions, certainly12:42
tristanideally we can have all of that code in one place, and we only really need to test these selections with `bst show`12:43
tristanjuergbi, ok anyway for the time being I'm convinced that a switch to turn it on and making it disabled by default right now, is most pressing12:44
tristanjmac, I pushed a fix to master for the abbreviations of logfile regressions by the way12:44
tristanMessageOrLogFile was just missing it's size_request()12:44
jmacOh. That's what !382 was for12:46
juergbitristan: yes, that's my current line of thoughts. tbh, as a user I would likely use two bst track invocations instead12:46
tristanHrrrrrmmmm sorry :-(12:49
tristanjmac, I'm under a downpour of emails :-(12:49
jmacNo problem. If you think the name change is appropriate I'll make that as a separate request.12:50
tristanI see it's just from a couple of hours ago12:50
tristanjmac, you can do that if you like... to be honest it was a weekend writeup all that logging code12:51
tristanthe intention was to do size requests and some terminal width aware rendering, which would require LogLine to have some idea of the size of the widgets12:51
tristanand which ones have natural vs minimum sizes12:51
tristanmight still be interesting to render the lines twice (second time only if `bst --log-file` is specified), and allow ellipsize of element names which are getting too long12:52
tristanmaybe conditionally wrapping the trailing message part onto a new indented line in the cases where they dont fit12:53
tristanjmac, anyway that was the direction I was headed; I wanted nicely columnized readable lines; and huuuuuuuuge.bst element names are completely breaking that :'(12:53
jmacOK12:54
tristanjmac, but I dont mind changing that to 'prepare', since the current code doesnt do that at all :)12:54
tristanactually the reason we pass the pipeline in there, is because it's what contains the list of elements, which lets us know how long the biggest element is going to be12:55
tristanbut we didnt end up using that, because they are just tooooo long :(12:55
tristanjmac, perhaps if we dont need it, we could remove pipeline from there completely, I think there is a stray thing which wants to grab the context or the project pointer off of the pipeline, which makes initialization of the logger weird and gross12:56
tristananyway, I've noticed you've done some refactoring around there and appreciate it, so I'll okay any cleanup patches you have :)12:56
gitlab-br-botbuildstream: merge request (jmac/rename_size_request->master: WIP: Logging widgets: Rename 'size_request' to 'prepare') #382 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38212:57
jmacThe pipeline is where we get logdir from, which is what inspired me to change it12:57
gitlab-br-botbuildstream: issue #354 ("Allow configuring an element to not be tracked by --track-all") changed state ("closed") https://gitlab.com/BuildStream/buildstream/issues/35412:58
gitlab-br-botbuildstream: merge request (tristan/no-cross-junction-default->master: Disable cross junction tracking by default) #384 changed state ("merged"): https://gitlab.com/BuildStream/buildstream/merge_requests/38412:58
tristanjmac, but logdir comes from the context12:58
tristanjmac, the context is available in initialization way earlier than the pipeline, which is sometimes never available12:59
* tristan gotta change location12:59
tristanjmac, unable to rebase your 382 with the UI it seems :-/13:00
tristanI'll okay it once I get to home...13:00
jmacNo, leave !382 for now13:00
*** tristan has quit IRC13:03
gitlab-br-botbuildstream: merge request (richardmaw/fix-unit-test-hang-on-crash->master: Fix unit tests hanging when there's an exception in a sandbox run) #375 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/37513:08
*** tristan has joined #buildstream13:13
tristanjmac, I have a rebase locally of 382, shall I just push it ?13:16
tlatertristan: I think I'm going to need a bit more guidance on the scheduler change - what I've been doing so far a) causes hangs and b) doesn't actually end up being a nice interface.13:16
tristanjmac, oops, I just saw your message in the irc logs, I'll leave it for now :)13:17
jmacYeah, I was just thinking about the point that context doesn't need to come from pipeline so I was going to have a longer think about it13:18
tristanYeah, it would be nice to factor out that pipeline for now entirely if we can13:20
tristanI think we only need it for print_heading() and print_summary()13:20
tristanwhich we could do in a separate class (or file even)13:21
skullmanhttps://gitlab.com/BuildStream/buildstream/merge_requests/375 passes tests and I couldn't reproduce the errors I got earlier after running in a loop for hours13:21
gitlab-br-botbuildstream: merge request (jmac/artifact-receive-profiling->master: WIP: Add artifact cache receive profiling domain and instructions.) #383 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38313:24
tristanskullman, while I think juergbi's experiment is a nice thing to try, I think your patch there is clearly an improvement anyway...13:25
gitlab-br-botbuildstream: merge request (richardmaw/fix-unit-test-hang-on-crash->master: Fix unit tests hanging when there's an exception in a sandbox run) #375 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/37513:25
tristanso set to merge13:26
* skullman waits for the next non-deterministic test failure to prevent it being merged13:26
tristan:)13:26
tristanoddly, it's very rare we get those in CI13:27
skullmanI've had an unlucky year to far, so it figures that they'd happen to me.13:28
* tristan still has trouble with test_push_pull, and saw it hang once today13:28
tristanit hangs almost once a day for me, test_push_pull; yes: it's very bad13:28
tristaneeeek, I introduced a horrible bug it seems :'(13:34
*** tristan has quit IRC13:38
gitlab-br-botbuildstream: issue #298 ("Unix integration tests not unmounting on crash") changed state ("closed") https://gitlab.com/BuildStream/buildstream/issues/29813:39
gitlab-br-botbuildstream: merge request (richardmaw/fix-unit-test-hang-on-crash->master: Fix unit tests hanging when there's an exception in a sandbox run) #375 changed state ("merged"): https://gitlab.com/BuildStream/buildstream/merge_requests/37513:39
*** tristan has joined #buildstream13:51
gitlab-br-botbuildstream: merge request (jmac/artifact-receive-profiling->master: WIP: Add artifact cache receive profiling domain and instructions.) #383 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38314:01
*** noisecell has quit IRC14:03
*** tristan has quit IRC14:12
gitlab-br-botbuildstream: merge request (cmake-ninja->master: plugins/elements/cmake.yaml: allow using ninja instead of make (#279)) #362 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/36214:13
jmacIf I've got a line longer than 119 characters, do I have to mark it with both # nopep8 and # pylint: disable... ?14:15
jmacE.g. this one passes pep8 but not pylint https://gitlab.com/BuildStream/buildstream/-/jobs/6262730914:16
jmacEr, passes pylint but fails pep814:16
tlaterjmac: They should both fail14:17
gitlab-br-botbuildstream: merge request (unused-workspaces->master: _pipeline.py: correct reporting of unused workspace) #363 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/36314:18
tlaterI do think you'll have to mark it with both14:18
gitlab-br-botbuildstream: merge request (cmake-ninja->master: plugins/elements/cmake.yaml: allow using ninja instead of make (#279)) #362 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/36214:18
tlaterNever attempted what the actual format for that would be though14:18
tlaterPerhaps # nopep8 pylint: disable=* ?14:18
jmacI'll try it14:19
gitlab-br-botbuildstream: merge request (cmake-ninja->master: plugins/elements/cmake.yaml: allow using ninja instead of make (#279)) #362 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/36214:22
jmactlater: Yes, that does appear to work, locally at least14:23
tlaterNice, now we know what to do in that case, too :)14:23
gitlab-br-botbuildstream: merge request (jmac/artifact-receive-profiling->master: WIP: Add artifact cache receive profiling domain and instructions.) #383 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38314:24
*** tristan has joined #buildstream14:30
tristanHow come I'm spending time "Initializing remote caches", when I've clearly commented out the artifacts from the project and from my buildstream.conf... ?14:34
tristanOH!14:34
tristanbecause junctions14:34
tristanWe need an option to explicitly disable a cache14:34
gitlab-br-botbuildstream: merge request (richardmaw/build-status-extensions->master: Print summary of failed builds) #329 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/32914:34
jmac!383 is a small change if anyone has a few minutes spare to review14:39
*** noisecell has joined #buildstream14:45
skullmanlooks sensible to me at a glance, feels like the comment about ForceCommand is missing context about how it's otherwise used so I'm not sure of its value, I'll have to read up on how the profiling stuff works to comment further14:45
jmacskullman: It's a modification to the normal ForceCommand listed in doc/source/artifacts.rst14:46
skullmanta, I'll take a look at that for context14:47
jmacWe don't document BST_PROFILE in normal documentation, hence my shoving that example in a comment.14:49
tristanjmac, note that I made a misguided comment in an MR at one point, I am absolutely OK with documenting secret internal env vars when it is done in HACKING.rst14:50
tristanthat is what HACKING.rst is sort of about, it's not user facing or API14:50
jmacOK, in which case I'll consider moving that comment14:51
gitlab-br-botbuildstream: merge request (tristan/fix-cross-junction-disaster->master: Fix the cross junction disaster) #385 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38515:03
tristanOk, crisis averted15:04
gitlab-br-botbuildstream: merge request (element-prepare->master: Prevent configure commands from running more than once in incremental workspace builds) #386 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38615:15
gitlab-br-botbuildstream: merge request (tristan/fix-cross-junction-disaster->master: Fix the cross junction disaster) #385 changed state ("merged"): https://gitlab.com/BuildStream/buildstream/merge_requests/38515:15
gitlab-br-botbuildstream: merge request (element-prepare->master: Prevent configure commands from running more than once in incremental workspace builds) #386 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38615:20
gitlab-br-botbuildstream: merge request (element-prepare->master: Prevent configure commands from running more than once in incremental workspace builds) #386 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38615:23
tlaterWould someone mind having a look at that MR?15:23
gitlab-br-botbuildstream: merge request (richardmaw/build-status-extensions->master: Print summary of failed builds) #329 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/32915:24
tristantlater, I dont have time tonight, just made a tiny comment15:28
tristantlater, I'll try to give it a run through tomorrow, looks like it's one of the integral pieces of incremental builds we discussed15:29
tlatertristan: Thanks :)15:29
* tlater was hoping to close #209 with it15:30
*** tristan_ has joined #buildstream15:32
*** tristan has quit IRC15:32
gitlab-br-botbuildstream: merge request (jmac/artifact-receive-profiling->master: WIP: Add artifact cache receive profiling domain and instructions.) #383 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38315:35
*** tristan_ has quit IRC15:35
gitlab-br-botbuildstream: merge request (jmac/artifact-receive-profiling->master: WIP: Add artifact cache receive profiling domain and instructions.) #383 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38315:42
*** jsgrant_ has quit IRC15:44
gitlab-br-botbuildstream: merge request (element-prepare->master: Prevent configure commands from running more than once in incremental workspace builds) #386 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38615:46
*** tristan_ has joined #buildstream15:54
gitlab-br-botbuildstream: merge request (element-prepare->master: Prevent configure commands from running more than once in incremental workspace builds) #386 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38616:04
gitlab-br-botbuildstream: merge request (richardmaw/build-status-extensions->master: Print summary of failed builds) #329 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/32916:07
gitlab-br-botbuildstream: merge request (135-expire-artifacts-in-local-cache->master: WIP: Resolve "Expire artifacts in local cache") #347 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/34716:09
gitlab-br-botbuildstream: merge request (jmac/artifact-receive-profiling->master: WIP: Add artifact cache receive profiling domain and instructions.) #383 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38316:11
*** jsgrant__ has joined #buildstream16:13
gitlab-br-botbuildstream: merge request (jmac/artifact-receive-profiling->master: Add artifact cache receive profiling domain and instructions.) #383 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/38316:15
*** Prince781 has joined #buildstream16:19
*** toscalix has quit IRC16:27
*** noisecell has quit IRC16:40
*** jonathanmaw has quit IRC17:02
*** tristan_ has quit IRC17:06
jjardonHi, can someone check the info at https://gitlab.com/BuildStream/buildstream/issues/353 is correct?17:21
jmacI can't think of anything else17:23
*** tristan_ has joined #buildstream17:24
*** dominic has quit IRC17:55
gitlab-br-botbuildstream: merge request (richardmaw/build-status-extensions->master: Print summary of failed builds) #329 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/32918:03
*** solid_black has joined #buildstream18:08
gitlab-br-botbuildstream: issue #247 ("Print summary of failed modules when there is a build failure") changed state ("closed") https://gitlab.com/BuildStream/buildstream/issues/24718:19
gitlab-br-botbuildstream: merge request (richardmaw/build-status-extensions->master: Print summary of failed builds) #329 changed state ("merged"): https://gitlab.com/BuildStream/buildstream/merge_requests/32918:19
*** Prince781 has quit IRC18:33
*** valentind has joined #buildstream18:56
*** Prince781 has joined #buildstream19:03
gitlab-br-botbuildstream: merge request (jjardon/getting_started->master: Add getting started section) #323 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/32319:08
*** Prince781 has quit IRC19:14
*** tristan_ has quit IRC19:28
*** solid_black has quit IRC19:52
*** aday has quit IRC20:27
*** cs_shadow has quit IRC20:31
*** Prince781 has joined #buildstream20:55
*** Prince781 has quit IRC21:16
gitlab-br-botbuildstream: issue #355 ("Add a "cache" command to bst") changed state ("opened") https://gitlab.com/BuildStream/buildstream/issues/35521:29
gitlab-br-botbuildstream: merge request (jjardon/ci_fedora_27->master: Run test in Fedora27, apart from Debian 8) #378 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/37822:10
gitlab-br-botbuildstream: merge request (jjardon/ci_fedora_27->master: Run test in Fedora27, apart from Debian 8) #378 changed state ("opened"): https://gitlab.com/BuildStream/buildstream/merge_requests/37822:16
*** Prince781 has joined #buildstream22:57
*** Prince781 has quit IRC22:59

Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!