Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/hydra
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4b280689256b
Choose a base ref
...
head repository: NixOS/hydra
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 551e936facb3
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 15, 2019

  1. Update flake.nix

    Currently Hydra is only supported on x86_64-linux.
    edolstra committed Oct 15, 2019
    Copy the full SHA
    551e936 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 flake.nix
10 changes: 5 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -159,7 +159,7 @@

hydraJobs = {

build.x86_64-linux = packages.hydra;
build.x86_64-linux = packages.x86_64-linux.hydra;

manual =
pkgs.runCommand "hydra-manual-${version}" {}
@@ -269,11 +269,11 @@
container = nixosConfigurations.container.config.system.build.toplevel;
};

checks.build = hydraJobs.build.x86_64-linux;
checks.install = hydraJobs.tests.install.x86_64-linux;
checks.x86_64-linux.build = hydraJobs.build.x86_64-linux;
checks.x86_64-linux.install = hydraJobs.tests.install.x86_64-linux;

packages.hydra = pkgs.hydra;
defaultPackage = pkgs.hydra;
packages.x86_64-linux.hydra = pkgs.hydra;
defaultPackage.x86_64-linux = pkgs.hydra;

nixosModules.hydra = {
imports = [ ./hydra-module.nix ];