| 13 May 2022 |
osnyx (he/him) | In reply to @janne.hess:helsinki-systems.de But what would the error message say? It's not like you can just change an option to fix the issue Huh? I thought that's what #888 is introducing. But I honestly haven't checked where evaluator_restrict_eval comes from. | 10:39:11 |
das_j | In reply to @os:matrix.flyingcircus.io Huh? I thought that's what #888 is introducing. But I honestly haven't checked where evaluator_restrict_eval comes from. Yeah that is what it's introducing. But I doubt this will ever get merged so having an error message that says something else isn't really helpful. Documenting that is probably a better way to go (but in a separate PR!) | 10:40:04 |
osnyx (he/him) | Okay. Todolistengeräusch | 10:40:45 |
osnyx (he/him) | In reply to @linus:schreibt.jetzt how does it get there? Ah, one of the nix paths contained a ${nixpkgs} reference in a path. I replaced that with a relative path (possible in that particular case), but adjusting the NIX_PATH might also be a viable way. | 11:44:31 |
@linus:schreibt.jetzt | In reply to @os:matrix.flyingcircus.io Ah, one of the nix paths contained a ${nixpkgs} reference in a path. I replaced that with a relative path (possible in that particular case), but adjusting the NIX_PATH might also be a viable way. If anything you want it to be an input in your hydra jobset definition, because NIX_PATH doesn't apply globally in Hydra | 11:55:16 |
osnyx (he/him) | I'll have a look, thx. | 11:56:01 |
| 14 May 2022 |
| Florian | W3F changed their display name from Florian | W3F to Florian | OoO -> 29.5.. | 11:55:50 |
| 15 May 2022 |
| dadada (they/them) changed their display name from dadada (er/they) to dadada / Tim. | 13:19:12 |
@ulrikstrid:matrix.org | Some maybe stupid questions:
* How do I make docker/VM images available after a run?
* How can I upload my cache to cachix/S3 after a run? | 14:03:05 |
cransom | you can use runCommand to push paths to a cache. if you look around for references to hydra-build-products in nixpkgs, you'll see how to create links for downloads in hydra. | 16:49:58 |
@ulrikstrid:matrix.org | In reply to @casey:hubns.net you can use runCommand to push paths to a cache. if you look around for references to hydra-build-products in nixpkgs, you'll see how to create links for downloads in hydra. Thank you 🙏 | 16:53:59 |
| 16 May 2022 |
| @0b11:matrix.org joined the room. | 04:23:39 |
| @0b11:matrix.org changed their display name from 0b01010011 to 0x53. | 04:26:08 |
| @cgroves:matrix.org left the room. | 13:19:04 |
| @lina:monero.social left the room. | 18:15:46 |
| 17 May 2022 |
| kranium joined the room. | 12:22:43 |
@ulrikstrid:matrix.org | Getting this error: Use of uninitialized value in split at /nix/store/g3lg8z40x6m0l81h3fjkvg6gd2h9wv3m-hydra-0.1.20220502.7c133a9/libexec/hydra/lib/Hydra/Plugin/GithubPulls.pm line 33. which seems to be this line: https://github.com/NixOS/hydra/blob/b41818e067c7d3925171bcfaeb854015d5b64ff1/src/lib/Hydra/Plugin/GithubPulls.pm#L33 | 19:40:06 |
@ulrikstrid:matrix.org | How can I debug/Fix this? I'm not a good perl developer :P | 19:40:23 |
mei 🌒& | one would guess $res->header("Link") is null (I have never used perl before) | 19:45:19 |
mei 🌒& | * one would guess $res->header("Link") is null (I have never written perl before) | 19:45:32 |
das_j | In reply to @ckie:ckie.dev one would guess $res->header("Link") is null (I have never written perl before) it's actually undef, making it appear that no Link header was returned | 19:50:21 |
mei 🌒& | i did say i've never written perl before (^: | 19:50:46 |
mei 🌒& | does perl have a null though? | 19:50:55 |
das_j | no, just undef | 19:51:00 |
das_j | … or does it? | 19:51:04 |
mei 🌒& | vsauce music | 19:51:12 |
das_j | In reply to @janne.hess:helsinki-systems.de it's actually undef, making it appear that no Link header was returned if that's a valid case (and the integration doesn't break when no Link is returned) you can just do `split ',', ($res->header("Link") // ""); | 19:51:30 |
das_j | In reply to @janne.hess:helsinki-systems.de it's actually undef, making it appear that no Link header was returned * if that's a valid case (and the integration doesn't break when no Link is returned) you can just do `split ',', ($res->header("Link") // "");` | 19:51:34 |
das_j | * if that's a valid case (and the integration doesn't break when no Link is returned) you can just do split ',', ($res->header("Link") // ""); | 19:51:42 |
das_j | DB<2> print STDERR (undef // "lal");
lal
DB<3> print STDERR ("abc" // "lal");
abc
| 19:52:17 |