*** xjuan has joined #buildstream | 00:53 | |
*** xjuan has quit IRC | 01:48 | |
*** tristan has joined #buildstream | 03:24 | |
*** nimish has joined #buildstream | 03:29 | |
*** kapil___ has joined #buildstream | 04:20 | |
gitlab-br-bot | tristanvb merged MR !1058 (tristan/element-processing-order->master: Make build plan element list stable) on buildstream https://gitlab.com/BuildStream/buildstream/merge_requests/1058 | 04:42 |
---|---|---|
*** skullman has quit IRC | 05:16 | |
*** tristan has quit IRC | 05:44 | |
*** nimish has quit IRC | 05:56 | |
*** nimish has joined #buildstream | 06:59 | |
*** kapil___ has quit IRC | 07:09 | |
*** alatiera has joined #buildstream | 07:36 | |
*** tpollard has joined #buildstream | 08:40 | |
*** toscalix has joined #buildstream | 08:49 | |
*** tpollard has quit IRC | 09:22 | |
*** CTtpollard has joined #buildstream | 09:22 | |
*** bochecha has joined #buildstream | 09:42 | |
jmac | !1056 is a ten-line change if anyone has time to review it | 09:45 |
gitlab-br-bot | MR !1056: _sandboxremote.py: Create marked directories before running https://gitlab.com/BuildStream/buildstream/merge_requests/1056 | 09:45 |
*** nimish has quit IRC | 09:47 | |
bochecha | to whoever maintains the buildstream docker images and hasn't updated them to Fedora 29 yet: thank you very much :) | 09:49 |
bochecha | (Fedora 29 breaks our ABI checker script in Freedesktop-Sdk in a way that it silently ignores 98% of libraries, and always reports ABI compatibility as a result, even when the ABI was actually broken 😱️) | 09:50 |
jmac | valentind: I've reproduced the RESOURCE_EXHAUSTED problem you saw earlier. | 09:50 |
valentind | jmac, there is a branch fixing it. | 09:51 |
valentind | https://gitlab.com/BuildGrid/buildgrid/merge_requests/138 | 09:52 |
jmac | Ah yes, thanks | 09:53 |
*** benschubert has joined #buildstream | 10:06 | |
*** jonathanmaw has joined #buildstream | 10:11 | |
*** lachlan has joined #buildstream | 10:28 | |
*** alatiera_ has joined #buildstream | 10:35 | |
*** alatiera has quit IRC | 10:37 | |
*** alatiera_ is now known as alatiera | 10:37 | |
*** CTtpollard is now known as tpollard | 10:39 | |
tpollard | has anyone seen bst delete entries in a project.conf after running? | 10:39 |
valentind | tpollard, sounds weird. I thought only elements, project.refs and junction.refs could be rewritten. | 10:44 |
tpollard | yes it is weird | 10:45 |
tpollard | I seem to have a test case in which an entry is removed from a project.conf after a build has run | 10:46 |
tpollard | I would have thought if it was a malformed/parsing issue it would just complain about it | 10:48 |
valentind | tpollard, has it happened only once? or can you reproduce it? | 10:48 |
tpollard | valentind: I will push it to a branch soon, it's a test case for https://gitlab.com/BuildStream/buildstream/merge_requests/1024/ | 10:49 |
tpollard | I'm trying to complete a testcase where multiple project.confs (i.e top level and subproject/junction) define the same remote url but with different push config | 10:52 |
tpollard | and part of that requires me to write the urls to the files at runtime, which seems to succeed but after bst has ran the entries seemingly get removed | 10:54 |
*** nimish has joined #buildstream | 10:55 | |
*** juergbi has quit IRC | 11:03 | |
*** juergbi has joined #buildstream | 11:19 | |
*** nimish has quit IRC | 11:25 | |
*** flatmush has quit IRC | 11:34 | |
*** flatmush has joined #buildstream | 11:34 | |
*** finn_ has joined #buildstream | 12:07 | |
*** phildawson_ has quit IRC | 12:43 | |
*** bochecha has quit IRC | 12:53 | |
tpollard | valentind: I've pushed the failing test to https://gitlab.com/BuildStream/buildstream/merge_requests/1024/ | 13:48 |
*** nimish has joined #buildstream | 14:01 | |
*** nimish has quit IRC | 14:11 | |
*** nimish has joined #buildstream | 14:11 | |
jennis | I'm looking to return information to the user without using the stream API, what's the general process to do this? | 14:26 |
*** nimish has quit IRC | 14:26 | |
*** nimish has joined #buildstream | 14:27 | |
lachlan | Hi, I have a patch to fix a benchmarking issue which is currently preventing one of the key benchmarks from running successfully. If someone could take a look with respects to merging I would be most obliged. https://gitlab.com/BuildStream/benchmarks/commits/lachlanmackenzie/Fix_bst_fetching | 14:27 |
jennis | Context: I'm adding the `bst artifact delete` command, if we specify an artifact that is NOT in the cache, we get a misleading Exception, instead, in cli.py, for each artifact we try to delete with `bst artifact delete`, I want to output to users artifacts we haven't explicitly deleted *because they weren't there in the first place* | 14:28 |
tpollard | jennis: check if it's cached at cli.py and return the warning there? | 14:30 |
jennis | Yes, but I'm asking how we return such warnings? | 14:30 |
tpollard | but I suppose you have to steam.load it to be able to query if it's cached first | 14:31 |
tpollard | *stream | 14:31 |
jennis | exactly, which I don't do for the case of explicit artifact deletion | 14:31 |
jennis | We have examples of `click.echo('WARNING:...')` in cli.py, but I'm not convinced this is suitable | 14:32 |
jennis | "WARNING: something you're explictly trying to delete is not here..." <--- is that ok? | 14:32 |
jennis | ahh, no, this is what I want, as I can direct that to stderr :) | 14:33 |
jennis | thanks tpollard | 14:33 |
tpollard | I think shell has an app error raised in cli.py if a buildtree is not found for a specific condition | 14:34 |
jennis | Yeah, I don't want to raise an error though, because if we specify multiple artifact refs for arguments, I don't want latter arguments to *not* be deleted | 14:35 |
tpollard | maybe a canditate for a configurable fatal warning | 14:36 |
tpollard | i.e their might be a situation in which you'd want it to error out if an artifact was missing | 14:37 |
tpollard | that was expected to be there | 14:37 |
tpollard | but by default continue with warning makes sense yeh | 14:37 |
jennis | True, I'll leave that for MR discussion though | 14:37 |
jennis | because if we accept the fact that if we're deleting, and it's already not there, that's good news | 14:38 |
jennis | Seems sensible to me | 14:38 |
tpollard | yeh I think that's a fine default presumption | 14:38 |
*** lachlan has quit IRC | 14:47 | |
*** nimish has quit IRC | 14:52 | |
*** bochecha has joined #buildstream | 14:52 | |
*** nimish has joined #buildstream | 14:53 | |
*** nimish has quit IRC | 14:58 | |
*** nimish has joined #buildstream | 14:58 | |
*** lachlan has joined #buildstream | 15:03 | |
laurence | lachlan, it's the two latest commits to your branch there that you want folks to have a look at? | 15:04 |
laurence | Not sure who has an understanding of that code,was a fair while back that ssssam[m] added the baserock tests there | 15:05 |
laurence | not that that should stop others having a look | 15:05 |
*** nimish_ has joined #buildstream | 15:13 | |
*** nimish has quit IRC | 15:14 | |
*** nimish_ is now known as nimish | 15:14 | |
*** nimish has quit IRC | 15:33 | |
*** nimish has joined #buildstream | 15:34 | |
gitlab-br-bot | aevri opened MR !1059 (aevri/tox_no_cov->master: pytest-cov==2.6.1, contributing: '--last-failed' and '--no-cov' tips) on buildstream https://gitlab.com/BuildStream/buildstream/merge_requests/1059 | 15:40 |
*** nimish has quit IRC | 15:44 | |
*** nimish has joined #buildstream | 15:44 | |
*** nimish has quit IRC | 15:48 | |
*** lachlan has quit IRC | 16:05 | |
*** lachlan has joined #buildstream | 16:20 | |
*** toscalix has quit IRC | 16:21 | |
*** lachlan has quit IRC | 16:28 | |
benschubert | Is anyone running python 3.7 with BuildStream by any chance? | 16:30 |
benschubert | For me {tox,pytest} --no-cov ends up failing all the time | 16:31 |
*** lachlan has joined #buildstream | 16:33 | |
*** nimish has joined #buildstream | 16:37 | |
*** lachlan has quit IRC | 16:37 | |
gitlab-br-bot | cs-shadow approved MR !1059 (aevri/tox_no_cov->master: pytest-cov==2.6.1, contributing: '--last-failed' and '--no-cov' tips) on buildstream https://gitlab.com/BuildStream/buildstream/merge_requests/1059 | 16:43 |
*** nimish has quit IRC | 16:46 | |
*** nimish has joined #buildstream | 16:47 | |
*** lachlan has joined #buildstream | 16:53 | |
*** nimish has quit IRC | 16:57 | |
*** nimish has joined #buildstream | 16:57 | |
*** juergbi has quit IRC | 16:58 | |
*** juergbi has joined #buildstream | 16:58 | |
*** jonathanmaw has quit IRC | 17:02 | |
*** tristan has joined #buildstream | 17:05 | |
*** ChanServ sets mode: +o tristan | 17:05 | |
*** sambishop has quit IRC | 17:07 | |
*** tpollard has quit IRC | 17:14 | |
gitlab-br-bot | aevri merged MR !1059 (aevri/tox_no_cov->master: pytest-cov==2.6.1, contributing: '--last-failed' and '--no-cov' tips) on buildstream https://gitlab.com/BuildStream/buildstream/merge_requests/1059 | 17:19 |
*** nimish has quit IRC | 17:22 | |
*** nimish has joined #buildstream | 17:23 | |
*** nimish has joined #buildstream | 17:23 | |
*** nimish has quit IRC | 17:28 | |
*** nimish has joined #buildstream | 17:29 | |
*** finn_ has quit IRC | 17:33 | |
*** nimish has quit IRC | 17:33 | |
*** nimish has joined #buildstream | 17:34 | |
gitlab-br-bot | jennis opened MR !1060 (jennis/new_artifact_subcommands->master: Introduce new artifact subcommand `delete`) on buildstream https://gitlab.com/BuildStream/buildstream/merge_requests/1060 | 17:35 |
*** nimish has quit IRC | 17:54 | |
*** nimish has joined #buildstream | 17:54 | |
gitlab-br-bot | tristanvb opened issue #857 (test_pull_missing_blob spuriously crashes) on buildstream https://gitlab.com/BuildStream/buildstream/issues/857 | 17:56 |
*** alatiera_ has joined #buildstream | 18:27 | |
*** alatiera has quit IRC | 18:28 | |
*** alatiera_ is now known as alatiera | 18:28 | |
*** nimish has quit IRC | 18:40 | |
*** lachlan has quit IRC | 18:43 | |
*** nimish has joined #buildstream | 18:49 | |
*** nimish has joined #buildstream | 18:50 | |
*** tristan has quit IRC | 19:05 | |
*** tristan has joined #buildstream | 19:22 | |
*** tristan_ has joined #buildstream | 19:23 | |
*** nimish has quit IRC | 19:32 | |
*** bochecha has quit IRC | 20:08 | |
*** nimish has joined #buildstream | 20:21 | |
*** alatiera_ has joined #buildstream | 20:27 | |
*** alatiera has quit IRC | 20:28 | |
*** alatiera_ is now known as alatiera | 20:29 | |
*** nimish has quit IRC | 20:45 | |
*** benschubert has quit IRC | 21:11 | |
*** alatiera has quit IRC | 21:15 | |
*** alatiera has joined #buildstream | 21:16 | |
*** tristan_ has quit IRC | 21:24 | |
*** tristan has joined #buildstream | 22:24 | |
*** alatiera has quit IRC | 22:41 | |
*** tristan has quit IRC | 23:53 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!