Compare commits

..
Author SHA1 Message Date
eldritch horrors 24b375099d update nixpkgs, lix pins 2025-10-10 15:13:44 +02:00
eldritch horrors d761f9942f fail if any non-final build is not passed
the buildkite docs seem to be incomplete. `timed_out` is also a valid
failure state, but this isn't mentioned anywhere in the rest api docs
2025-10-10 15:10:53 +02:00
+1 -6
View File
@@ -116,12 +116,7 @@ try:
'group': group,
'steps': [
{
'command': textwrap.dedent(f'''
set -ueo pipefail
resultPath=$(nix build --print-out-paths --no-link -L ".#hydraJobs.{job.name}^*")
echo "Built paths: $$resultPath"
attic push afnix-ci $$resultPath || true
'''),
'command': f'nix build --no-link -L ".#hydraJobs.{job.name}"',
'label': ".".join(job.path),
'key': job.drv_hash(),
'depends_on': [ d.drv_hash() for d in deps[job] ],