| 1 May 2026 |
Mic92 | In reply to @brian:bmcgee.ie Mic92: can you add my key in a permanent sense? Do we still got NixOS config for it? | 17:27:56 |
BMG | 🤷 lemme double check it's not something weird with my key | 17:29:59 |
BMG | Nope, definitely doesn't like my key any more. It did yesterday | 17:30:36 |
vcunat | We do. | 17:57:57 |
vcunat | https://github.com/NixOS/infra/tree/main/build/haumea | 17:58:32 |
vcunat | I can prepare the code now, etc. | 17:59:57 |
vcunat | BMG you should be able to login again now. | 18:06:23 |
vcunat | https://github.com/NixOS/infra/pull/1020 | 18:08:52 |
BMG | Thanks, I can test it in a little bit | 18:43:05 |
BMG | success 👍️ | 19:13:16 |
BMG | John Ericson:
hydra=# select count(*) as missing_drvpaths from buildsteps where drvPath is null or drvPath = '';
missing_drvpaths
------------------
54014
(1 row)
| 19:16:57 |
John Ericson | one row! | 19:17:30 |
John Ericson | ahhh! | 19:17:32 |
John Ericson | what fucked up step do we have here? :) | 19:17:45 |
BMG | no you're mis reading, I'm odoing a count | 19:17:57 |
John Ericson | oh | 19:18:04 |
BMG | * no you're mis reading, I'm doing a count | 19:18:04 |
John Ericson | oh yeah | 19:18:07 |
John Ericson | bummer | 19:18:08 |
John Ericson | way more than 1 | 19:18:10 |
John Ericson | are they current? | 19:18:32 |
BMG | It's 0 for type = 0 which is builds:
hydra=# select count(*) as missing_drvpaths from buildsteps where type = 0 and drvPath is null or drvPath = '';
missing_drvpaths
------------------
0
| 19:18:33 |
BMG | It's the substitutions where it's empty type = 1:
hydra=# select count(*) as missing_drvpaths from buildsteps where type = 1 and drvPath is null or drvPath = '';
missing_drvpaths
------------------
54014
| 19:18:58 |
John Ericson | hmm ok | 19:19:20 |
John Ericson | have a link to the newest one I cna see in the web app? | 19:19:35 |
BMG | What you mean, the latest build? | 19:23:56 |
BMG | Just to clarify Mic92 hexa haumea is retired right? This is being used to test changes to hydra, but it's not the main hydra db right? | 19:25:12 |
John Ericson | BMG: err lastest build step whoops | 19:25:25 |
BMG | hydra=# select * from buildsteps order by build desc limit 1;
build | stepnr | type | drvpath | busy | status | errormsg | starttime | stoptime | machine | system | propagatedfrom | overhead | timesbuilt | isnondeterministic
-----------+--------+------+-----------------------------------------------------------------------------------+------+--------+----------+-----------+----------+---------------------------------------------+--------------+----------------+----------+------------+--------------------
316215958 | 10 | 0 | /nix/store/9q5w2n67qxa5fg8zi4brpqvm13z0m09l-vm-test-run-containers-imperative.drv | 0 | 1 | | | | ssh://build@elated-minsky.builder.nixos.org | x86_64-linux | 316215949 | | |
(1 row)
| 19:25:39 |
John Ericson | I am just curious what thse substitution steps look like wher they come from | 19:25:43 |