forked from NixOS/hydra
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
945c3bc
commit 29a979a
Showing
6 changed files
with
59 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,9 +15,11 @@ | |
systems = [ "x86_64-linux" "aarch64-linux" ]; | ||
forEachSystem = nixpkgs.lib.genAttrs systems; | ||
|
||
overlayList = [ self.overlays.default nix.overlays.default ]; | ||
|
||
pkgsBySystem = forEachSystem (system: import nixpkgs { | ||
inherit system; | ||
overlays = [ self.overlays.default nix.overlays.default ]; | ||
overlays = overlayList; | ||
}); | ||
|
||
# NixOS configuration used for VM tests. | ||
|
@@ -386,50 +388,8 @@ | |
default = pkgsBySystem.${system}.hydra; | ||
}); | ||
|
||
nixosModules.hydra = { | ||
imports = [ ./hydra-module.nix ]; | ||
nixpkgs.overlays = [ self.overlays.default nix.overlays.default ]; | ||
}; | ||
|
||
nixosModules.hydraTest = { pkgs, ... }: { | ||
imports = [ self.nixosModules.hydra ]; | ||
|
||
services.hydra-dev.enable = true; | ||
services.hydra-dev.hydraURL = "http://hydra.example.org"; | ||
services.hydra-dev.notificationSender = "[email protected]"; | ||
|
||
systemd.services.hydra-send-stats.enable = false; | ||
|
||
services.postgresql.enable = true; | ||
services.postgresql.package = pkgs.postgresql_11; | ||
|
||
# The following is to work around the following error from hydra-server: | ||
# [error] Caught exception in engine "Cannot determine local time zone" | ||
time.timeZone = "UTC"; | ||
|
||
nix.extraOptions = '' | ||
allowed-uris = https://github.com/ | ||
''; | ||
}; | ||
|
||
nixosModules.hydraProxy = { | ||
services.httpd = { | ||
enable = true; | ||
adminAddr = "[email protected]"; | ||
extraConfig = '' | ||
<Proxy *> | ||
Order deny,allow | ||
Allow from all | ||
</Proxy> | ||
ProxyRequests Off | ||
ProxyPreserveHost On | ||
ProxyPass /apache-errors ! | ||
ErrorDocument 503 /apache-errors/503.html | ||
ProxyPass / http://127.0.0.1:3000/ retry=5 disablereuse=on | ||
ProxyPassReverse / http://127.0.0.1:3000/ | ||
''; | ||
}; | ||
nixosModules = import ./nixos-modules { | ||
overlays = overlayList; | ||
}; | ||
|
||
nixosConfigurations.container = nixpkgs.lib.nixosSystem { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ overlays }: | ||
|
||
rec { | ||
hydra = { | ||
imports = [ ./hydra.nix ]; | ||
nixpkgs = { inherit overlays; }; | ||
}; | ||
|
||
hydraTest = { pkgs, ... }: { | ||
imports = [ hydra ]; | ||
|
||
services.hydra-dev.enable = true; | ||
services.hydra-dev.hydraURL = "http://hydra.example.org"; | ||
services.hydra-dev.notificationSender = "[email protected]"; | ||
|
||
systemd.services.hydra-send-stats.enable = false; | ||
|
||
services.postgresql.enable = true; | ||
services.postgresql.package = pkgs.postgresql_11; | ||
|
||
# The following is to work around the following error from hydra-server: | ||
# [error] Caught exception in engine "Cannot determine local time zone" | ||
time.timeZone = "UTC"; | ||
|
||
nix.extraOptions = '' | ||
allowed-uris = https://github.com/ | ||
''; | ||
}; | ||
|
||
hydraProxy = { | ||
services.httpd = { | ||
enable = true; | ||
adminAddr = "[email protected]"; | ||
extraConfig = '' | ||
<Proxy *> | ||
Order deny,allow | ||
Allow from all | ||
</Proxy> | ||
ProxyRequests Off | ||
ProxyPreserveHost On | ||
ProxyPass /apache-errors ! | ||
ErrorDocument 503 /apache-errors/503.html | ||
ProxyPass / http://127.0.0.1:3000/ retry=5 disablereuse=on | ||
ProxyPassReverse / http://127.0.0.1:3000/ | ||
''; | ||
}; | ||
}; | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters