Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 581 Bytes

linux-darwin-builds.md

File metadata and controls

23 lines (20 loc) · 581 Bytes

on darwin when running docker-images it is required to have a linux worker

  • simply run run-linux-worker.sh

nix-darwin

  nix.buildMachines = [
    {
      hostName = "nix-docker-build-slave";
      systems = [ "x86_64-linux" ];
      maxJobs = 2;
      supportedFeatures = ["nixos-test" "big-parallel" "benchmark"];
    }
    {
      hostName = "localhost";
      systems = [ "x86_64-darwin" ];
      maxJobs = 6;
      supportedFeatures = ["nixos-test" "big-parallel" "benchmark"];
    }
  ];