| 24 Jun 2023 |
aidalgol | Maybe the threshold for that appearing is higher. | 20:58:33 |
| 26 Jun 2023 |
| @flufferfish:cyberia.club joined the room. | 05:31:11 |
| @jairo:recallstack.icu left the room. | 11:08:27 |
| @janik0:matrix.org changed their profile picture. | 21:38:10 |
| 29 Jun 2023 |
| Duanin2 joined the room. | 13:30:50 |
| @eggplant8652:matrix.org joined the room. | 17:48:32 |
| @eggplant8652:matrix.org left the room. | 17:48:40 |
| 30 Jun 2023 |
adisbladis | I know this isn't really the place to ask for PR reviews, but as I don't expect to get a response otherwise could I please get some eyeballs on https://github.com/nix-community/tree-sitter-nix/pull/42 | 01:29:22 |
Jonas Chevalier | nice, did you see that Github is going to use that project for code highlighting? | 08:07:18 |
Ilan Joselevich (Kranzes) | They already do | 09:06:28 |
Ilan Joselevich (Kranzes) | Earlier this week I think | 09:06:40 |
Sandro | Yeah, not so super happy about it https://github.com/nix-community/tree-sitter-nix/issues/40#issuecomment-1602451379 | 10:51:09 |
adisbladis | In reply to @zimbatm:numtide.com nice, did you see that Github is going to use that project for code highlighting? My CI PR was at least partially motivated by that + the issue Sandro 🐧 just linked. I think we're going to have a bit of work to do. | 11:56:24 |
Sandro | yay! | 15:58:03 |
| 1 Jul 2023 |
| @lotte:chir.rs changed their profile picture. | 09:46:07 |
| 2 Jul 2023 |
Ilan Joselevich (Kranzes) |  Download image.png | 15:49:59 |
Ilan Joselevich (Kranzes) | TIL: we have a darwin hci agent | 15:50:05 |
Jonas Chevalier | thanks to all the people that are contributing on the open collective | 17:46:47 |
| 3 Jul 2023 |
| Nate joined the room. | 18:02:23 |
Danila Danko | Hi! I made a GitHub action that caches only nix store paths that were accessed during a run. https://github.com/deemp/cache-nix-too . | 18:53:22 |
Danila Danko | I'd like to transfer it to nix-community. However, there is an issue https://github.com/deemp/cache-nix-too/issues/1
On macOS runners, restored and newly created cache size bounces. First time, new cache is large. In the next run, created cache is small. Then, the cycle repeats. I have no expertise to explain this behavior so I decided to write here before a transfer.
Any ideas why does it happen? | 18:57:56 |
Ilan Joselevich (Kranzes) | In reply to @br4ch1st0chr0n3:matrix.org Hi! I made a GitHub action that caches only nix store paths that were accessed during a run. https://github.com/deemp/cache-nix-too . https://github.com/DeterminateSystems/magic-nix-cache | 18:58:33 |
Ilan Joselevich (Kranzes) | is this something like this? | 18:58:36 |
Danila Danko | * Hi! I made a GitHub action that caches into GitHub cache nix store paths that were accessed during a run. https://github.com/deemp/cache-nix-too . | 19:00:05 |
Danila Danko | In reply to @kranzes:matrix.org https://github.com/DeterminateSystems/magic-nix-cache No, I wrote here https://github.com/DeterminateSystems/magic-nix-cache-action/issues/16 what I didn't like about their approach. TL;DR rate limit | 19:00:53 |
Danila Danko | In reply to @kranzes:matrix.org https://github.com/DeterminateSystems/magic-nix-cache * No, I wrote here https://github.com/DeterminateSystems/magic-nix-cache-action/issues/16 what I didn't like about their approach. TL;DR rate limit and Caches littered with entries | 19:01:32 |
Danila Danko | * No, I wrote here https://github.com/DeterminateSystems/magic-nix-cache-action/issues/16 what I didn't like about their approach. TL;DR rate limit and GitHub Actions Caches littered with entries | 19:02:48 |
Danila Danko | In this action, I just nix copy from a cache, run other steps, at the end look what paths were accessed (by atime) and nix copy them to cache. Finally, I save a single cache entry. | 19:04:50 |
Danila Danko | Somehow on macOS the assumption that a job always accesses approximately the same set of paths doesn't work | 19:08:55 |
Danila Danko | * Somehow, on macOS runners, the assumption that a job always accesses approximately the same set of paths doesn't work | 19:09:13 |