about summary refs log blame commit diff
path: root/ci/pipelines/post-receive.nix
blob: 415f10408cc79fd692283ae45ebba6490d771521 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11




                    





                                                                             








                                                                         

                                     

     
                                                            
{ pkgs, ... }:

let
  pipeline.steps = [
    {
      key = "build-briefcase";
      command = "nix-build . -I briefcase=$(pwd) --no-out-link --show-trace";
      label = ":nix: build briefcase";
    }
    {
      key = "build-socrates";
      command = ''
        nix-build '<nixpkgs/nixos>' \
          -I briefcase="$(pwd)" \
          -I nixpkgs=/var/lib/buildkite-agent-socrates/nixpkgs-channels \
          -I nixos-config=nixos/socrates/default.nix \
          -A system \
          --no-out-link \
          --show-trace
      '';
      label = ":nix: build socrates";
      depends_on = "build-briefcase";
    }
  ];
in pkgs.writeText "pipeline.yaml" (builtins.toJSON pipeline)