2019-05-08 11:28:02 +00:00
|
|
|
{
|
|
|
|
description = "A Nix-based continuous build system";
|
|
|
|
|
2020-03-31 10:55:35 +00:00
|
|
|
inputs.nixpkgs.url = "nixpkgs/nixos-20.03";
|
2019-09-24 17:58:10 +00:00
|
|
|
|
2019-09-17 15:25:59 +00:00
|
|
|
outputs = { self, nixpkgs, nix }:
|
2019-08-09 11:10:50 +00:00
|
|
|
let
|
2019-09-17 15:25:59 +00:00
|
|
|
|
2020-04-09 13:44:53 +00:00
|
|
|
version = "${builtins.readFile ./version}.${builtins.substring 0 8 self.lastModifiedDate}.${self.shortRev or "DIRTY"}";
|
2019-09-17 15:25:59 +00:00
|
|
|
|
|
|
|
pkgs = import nixpkgs {
|
|
|
|
system = "x86_64-linux";
|
2019-10-04 15:32:29 +00:00
|
|
|
overlays = [ self.overlay nix.overlay ];
|
2019-05-22 12:44:10 +00:00
|
|
|
};
|
2019-09-17 15:25:59 +00:00
|
|
|
|
|
|
|
# NixOS configuration used for VM tests.
|
|
|
|
hydraServer =
|
|
|
|
{ config, pkgs, ... }:
|
2019-09-24 17:58:10 +00:00
|
|
|
{ imports = [ self.nixosModules.hydraTest ];
|
2019-09-17 15:25:59 +00:00
|
|
|
|
|
|
|
virtualisation.memorySize = 1024;
|
|
|
|
virtualisation.writableStore = true;
|
|
|
|
|
|
|
|
environment.systemPackages = [ pkgs.perlPackages.LWP pkgs.perlPackages.JSON ];
|
|
|
|
|
|
|
|
nix = {
|
|
|
|
# Without this nix tries to fetch packages from the default
|
|
|
|
# cache.nixos.org which is not reachable from this sandboxed NixOS test.
|
|
|
|
binaryCaches = [];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-08-09 11:10:50 +00:00
|
|
|
in rec {
|
2019-05-08 11:28:02 +00:00
|
|
|
|
2019-09-17 15:25:59 +00:00
|
|
|
# A Nixpkgs overlay that provides a 'hydra' package.
|
|
|
|
overlay = final: prev: {
|
|
|
|
|
|
|
|
hydra = with final; let
|
|
|
|
|
|
|
|
perlDeps = buildEnv {
|
|
|
|
name = "hydra-perl-deps";
|
2020-03-31 11:19:36 +00:00
|
|
|
paths = with perlPackages; lib.closePropagation
|
2019-09-17 15:25:59 +00:00
|
|
|
[ ModulePluggable
|
|
|
|
CatalystActionREST
|
|
|
|
CatalystAuthenticationStoreDBIxClass
|
|
|
|
CatalystDevel
|
|
|
|
CatalystDispatchTypeRegex
|
|
|
|
CatalystPluginAccessLog
|
|
|
|
CatalystPluginAuthorizationRoles
|
|
|
|
CatalystPluginCaptcha
|
|
|
|
CatalystPluginSessionStateCookie
|
|
|
|
CatalystPluginSessionStoreFastMmap
|
|
|
|
CatalystPluginStackTrace
|
|
|
|
CatalystPluginUnicodeEncoding
|
|
|
|
CatalystTraitForRequestProxyBase
|
|
|
|
CatalystViewDownload
|
|
|
|
CatalystViewJSON
|
|
|
|
CatalystViewTT
|
|
|
|
CatalystXScriptServerStarman
|
|
|
|
CatalystXRoleApplicator
|
|
|
|
CryptRandPasswd
|
|
|
|
DBDPg
|
2020-04-10 17:05:25 +00:00
|
|
|
DBDSQLite
|
2019-09-17 15:25:59 +00:00
|
|
|
DataDump
|
|
|
|
DateTime
|
|
|
|
DigestSHA1
|
|
|
|
EmailMIME
|
|
|
|
EmailSender
|
|
|
|
FileSlurp
|
|
|
|
IOCompress
|
|
|
|
IPCRun
|
|
|
|
JSON
|
|
|
|
JSONAny
|
|
|
|
JSONXS
|
|
|
|
LWP
|
|
|
|
LWPProtocolHttps
|
|
|
|
NetAmazonS3
|
2019-11-07 17:42:15 +00:00
|
|
|
NetPrometheus
|
2019-09-17 15:25:59 +00:00
|
|
|
NetStatsd
|
|
|
|
PadWalker
|
|
|
|
Readonly
|
|
|
|
SQLSplitStatement
|
|
|
|
SetScalar
|
|
|
|
Starman
|
|
|
|
SysHostnameLong
|
2019-09-24 17:03:18 +00:00
|
|
|
TermSizeAny
|
2019-09-17 15:25:59 +00:00
|
|
|
TestMore
|
|
|
|
TextDiff
|
|
|
|
TextTable
|
|
|
|
XMLSimple
|
2019-10-04 15:32:29 +00:00
|
|
|
final.nix
|
|
|
|
final.nix.perl-bindings
|
2019-09-17 15:25:59 +00:00
|
|
|
git
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
|
|
|
|
name = "hydra-${version}";
|
|
|
|
|
|
|
|
src = self;
|
|
|
|
|
|
|
|
buildInputs =
|
2020-04-10 16:13:18 +00:00
|
|
|
[ makeWrapper autoconf automake libtool unzip nukeReferences pkgconfig libpqxx
|
2019-09-17 15:25:59 +00:00
|
|
|
gitAndTools.topGit mercurial darcs subversion bazaar openssl bzip2 libxslt
|
2019-10-04 15:32:29 +00:00
|
|
|
perlDeps perl final.nix
|
2019-09-17 15:25:59 +00:00
|
|
|
boost
|
2020-05-27 15:34:14 +00:00
|
|
|
postgresql_11
|
2020-03-31 10:55:35 +00:00
|
|
|
(if lib.versionAtLeast lib.version "20.03pre"
|
|
|
|
then nlohmann_json
|
|
|
|
else nlohmann_json.override { multipleHeaders = true; })
|
2019-09-17 15:25:59 +00:00
|
|
|
];
|
|
|
|
|
2020-05-13 15:37:25 +00:00
|
|
|
checkInputs = [
|
2020-05-15 11:48:21 +00:00
|
|
|
foreman
|
2020-05-13 15:37:25 +00:00
|
|
|
];
|
|
|
|
|
2019-09-17 15:25:59 +00:00
|
|
|
hydraPath = lib.makeBinPath (
|
2020-04-10 16:13:18 +00:00
|
|
|
[ subversion openssh final.nix coreutils findutils pixz
|
2019-09-17 15:25:59 +00:00
|
|
|
gzip bzip2 lzma gnutar unzip git gitAndTools.topGit mercurial darcs gnused bazaar
|
|
|
|
] ++ lib.optionals stdenv.isLinux [ rpm dpkg cdrkit ] );
|
|
|
|
|
|
|
|
configureFlags = [ "--with-docbook-xsl=${docbook_xsl}/xml/xsl/docbook" ];
|
|
|
|
|
|
|
|
shellHook = ''
|
2020-02-19 19:36:52 +00:00
|
|
|
PATH=$(pwd)/src/hydra-evaluator:$(pwd)/src/script:$(pwd)/src/hydra-eval-jobs:$(pwd)/src/hydra-queue-runner:$PATH
|
2019-09-17 15:25:59 +00:00
|
|
|
PERL5LIB=$(pwd)/src/lib:$PERL5LIB
|
2020-05-15 11:48:21 +00:00
|
|
|
export HYDRA_HOME="src/"
|
|
|
|
mkdir -p .hydra-data
|
|
|
|
export HYDRA_DATA="$(pwd)/.hydra-data"
|
|
|
|
export HYDRA_DBI='dbi:Pg:dbname=hydra;host=localhost;port=64444'
|
2019-09-17 15:25:59 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = "autoreconf -vfi";
|
|
|
|
|
|
|
|
NIX_LDFLAGS = [ "-lpthread" ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-03-04 14:39:21 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2019-09-17 15:25:59 +00:00
|
|
|
preCheck = ''
|
|
|
|
patchShebangs .
|
|
|
|
export LOGNAME=''${LOGNAME:-foo}
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
|
|
|
|
for i in $out/bin/*; do
|
|
|
|
read -n 4 chars < $i
|
|
|
|
if [[ $chars =~ ELF ]]; then continue; fi
|
|
|
|
wrapProgram $i \
|
|
|
|
--prefix PERL5LIB ':' $out/libexec/hydra/lib:$PERL5LIB \
|
|
|
|
--prefix PATH ':' $out/bin:$hydraPath \
|
|
|
|
--set HYDRA_RELEASE ${version} \
|
|
|
|
--set HYDRA_HOME $out/libexec/hydra \
|
2019-10-04 15:32:29 +00:00
|
|
|
--set NIX_RELEASE ${final.nix.name or "unknown"}
|
2019-09-17 15:25:59 +00:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
|
|
|
|
meta.description = "Build of Hydra on ${system}";
|
|
|
|
passthru.perlDeps = perlDeps;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
hydraJobs = {
|
|
|
|
|
2019-10-15 18:21:42 +00:00
|
|
|
build.x86_64-linux = packages.x86_64-linux.hydra;
|
2019-09-17 15:25:59 +00:00
|
|
|
|
|
|
|
manual =
|
|
|
|
pkgs.runCommand "hydra-manual-${version}" {}
|
|
|
|
''
|
|
|
|
mkdir -p $out/share
|
|
|
|
cp -prvd ${pkgs.hydra}/share/doc $out/share/
|
|
|
|
|
|
|
|
mkdir $out/nix-support
|
|
|
|
echo "doc manual $out/share/doc/hydra" >> $out/nix-support/hydra-build-products
|
|
|
|
'';
|
|
|
|
|
|
|
|
tests.install.x86_64-linux =
|
2020-05-11 19:36:32 +00:00
|
|
|
with import (nixpkgs + "/nixos/lib/testing-python.nix") { system = "x86_64-linux"; };
|
2019-09-17 15:25:59 +00:00
|
|
|
simpleTest {
|
|
|
|
machine = hydraServer;
|
|
|
|
testScript =
|
|
|
|
''
|
2020-05-11 19:36:32 +00:00
|
|
|
machine.wait_for_job("hydra-init")
|
|
|
|
machine.wait_for_job("hydra-server")
|
|
|
|
machine.wait_for_job("hydra-evaluator")
|
|
|
|
machine.wait_for_job("hydra-queue-runner")
|
|
|
|
machine.wait_for_open_port("3000")
|
|
|
|
machine.succeed("curl --fail http://localhost:3000/")
|
2019-09-17 15:25:59 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
tests.api.x86_64-linux =
|
2020-05-11 19:36:32 +00:00
|
|
|
with import (nixpkgs + "/nixos/lib/testing-python.nix") { system = "x86_64-linux"; };
|
2019-09-17 15:25:59 +00:00
|
|
|
simpleTest {
|
|
|
|
machine = hydraServer;
|
|
|
|
testScript =
|
|
|
|
let dbi = "dbi:Pg:dbname=hydra;user=root;"; in
|
|
|
|
''
|
2020-05-11 19:36:32 +00:00
|
|
|
machine.wait_for_job("hydra-init")
|
2019-09-17 15:25:59 +00:00
|
|
|
|
|
|
|
# Create an admin account and some other state.
|
2020-05-11 19:36:32 +00:00
|
|
|
machine.succeed(
|
|
|
|
"""
|
|
|
|
su - hydra -c "hydra-create-user root --email-address 'alice@example.org' --password foobar --role admin"
|
|
|
|
mkdir /run/jobset /tmp/nix
|
|
|
|
chmod 755 /run/jobset /tmp/nix
|
|
|
|
cp ${./tests/api-test.nix} /run/jobset/default.nix
|
|
|
|
chmod 644 /run/jobset/default.nix
|
|
|
|
chown -R hydra /run/jobset /tmp/nix
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
|
|
|
machine.succeed("systemctl stop hydra-evaluator hydra-queue-runner")
|
|
|
|
machine.wait_for_job("hydra-server")
|
|
|
|
machine.wait_for_open_port("3000")
|
2019-09-17 15:25:59 +00:00
|
|
|
|
|
|
|
# Run the API tests.
|
2020-05-11 19:36:32 +00:00
|
|
|
machine.succeed(
|
|
|
|
"su - hydra -c 'perl -I ${pkgs.hydra.perlDeps}/lib/perl5/site_perl ${./tests/api-test.pl}' >&2"
|
|
|
|
)
|
2019-09-17 15:25:59 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
tests.notifications.x86_64-linux =
|
2020-05-11 19:36:32 +00:00
|
|
|
with import (nixpkgs + "/nixos/lib/testing-python.nix") { system = "x86_64-linux"; };
|
2019-09-17 15:25:59 +00:00
|
|
|
simpleTest {
|
|
|
|
machine = { pkgs, ... }: {
|
|
|
|
imports = [ hydraServer ];
|
|
|
|
services.hydra-dev.extraConfig = ''
|
|
|
|
<influxdb>
|
|
|
|
url = http://127.0.0.1:8086
|
|
|
|
db = hydra
|
|
|
|
</influxdb>
|
|
|
|
'';
|
|
|
|
services.influxdb.enable = true;
|
|
|
|
};
|
|
|
|
testScript = ''
|
2020-05-11 19:36:32 +00:00
|
|
|
machine.wait_for_job("hydra-init")
|
2019-09-17 15:25:59 +00:00
|
|
|
|
|
|
|
# Create an admin account and some other state.
|
2020-05-11 19:36:32 +00:00
|
|
|
machine.succeed(
|
|
|
|
"""
|
|
|
|
su - hydra -c "hydra-create-user root --email-address 'alice@example.org' --password foobar --role admin"
|
|
|
|
mkdir /run/jobset
|
|
|
|
chmod 755 /run/jobset
|
|
|
|
cp ${./tests/api-test.nix} /run/jobset/default.nix
|
|
|
|
chmod 644 /run/jobset/default.nix
|
|
|
|
chown -R hydra /run/jobset
|
|
|
|
"""
|
|
|
|
)
|
2019-09-17 15:25:59 +00:00
|
|
|
|
|
|
|
# Wait until InfluxDB can receive web requests
|
2020-05-11 19:36:32 +00:00
|
|
|
machine.wait_for_job("influxdb")
|
|
|
|
machine.wait_for_open_port("8086")
|
2019-09-17 15:25:59 +00:00
|
|
|
|
|
|
|
# Create an InfluxDB database where hydra will write to
|
2020-05-11 19:36:32 +00:00
|
|
|
machine.succeed(
|
|
|
|
"curl -XPOST 'http://127.0.0.1:8086/query' "
|
|
|
|
+ "--data-urlencode 'q=CREATE DATABASE hydra'"
|
|
|
|
)
|
2019-09-17 15:25:59 +00:00
|
|
|
|
|
|
|
# Wait until hydra-server can receive HTTP requests
|
2020-05-11 19:36:32 +00:00
|
|
|
machine.wait_for_job("hydra-server")
|
|
|
|
machine.wait_for_open_port("3000")
|
2019-09-17 15:25:59 +00:00
|
|
|
|
|
|
|
# Setup the project and jobset
|
2020-05-11 19:36:32 +00:00
|
|
|
machine.succeed(
|
|
|
|
"su - hydra -c 'perl -I ${pkgs.hydra.perlDeps}/lib/perl5/site_perl ${./tests/setup-notifications-jobset.pl}' >&2"
|
|
|
|
)
|
2019-09-17 15:25:59 +00:00
|
|
|
|
|
|
|
# Wait until hydra has build the job and
|
|
|
|
# the InfluxDBNotification plugin uploaded its notification to InfluxDB
|
2020-05-11 19:36:32 +00:00
|
|
|
machine.wait_until_succeeds(
|
|
|
|
"curl -s -H 'Accept: application/csv' "
|
|
|
|
+ "-G 'http://127.0.0.1:8086/query?db=hydra' "
|
|
|
|
+ "--data-urlencode 'q=SELECT * FROM hydra_build_status' | grep success"
|
|
|
|
)
|
2019-09-17 15:25:59 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2019-09-24 19:48:28 +00:00
|
|
|
container = nixosConfigurations.container.config.system.build.toplevel;
|
2019-08-09 11:10:50 +00:00
|
|
|
};
|
2019-06-03 10:29:42 +00:00
|
|
|
|
2019-10-15 18:21:42 +00:00
|
|
|
checks.x86_64-linux.build = hydraJobs.build.x86_64-linux;
|
|
|
|
checks.x86_64-linux.install = hydraJobs.tests.install.x86_64-linux;
|
2019-05-08 11:28:02 +00:00
|
|
|
|
2019-10-15 18:21:42 +00:00
|
|
|
packages.x86_64-linux.hydra = pkgs.hydra;
|
|
|
|
defaultPackage.x86_64-linux = pkgs.hydra;
|
2019-05-08 16:12:24 +00:00
|
|
|
|
2019-09-17 15:25:59 +00:00
|
|
|
nixosModules.hydra = {
|
|
|
|
imports = [ ./hydra-module.nix ];
|
2019-10-04 15:32:29 +00:00
|
|
|
nixpkgs.overlays = [ self.overlay nix.overlay ];
|
2019-09-24 17:58:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nixosModules.hydraTest = {
|
|
|
|
imports = [ self.nixosModules.hydra ];
|
|
|
|
|
|
|
|
services.hydra-dev.enable = true;
|
|
|
|
services.hydra-dev.hydraURL = "http://hydra.example.org";
|
|
|
|
services.hydra-dev.notificationSender = "admin@hydra.example.org";
|
|
|
|
|
|
|
|
systemd.services.hydra-send-stats.enable = false;
|
|
|
|
|
|
|
|
services.postgresql.enable = true;
|
2020-05-27 15:34:14 +00:00
|
|
|
services.postgresql.package = pkgs.postgresql_11;
|
2019-09-24 17:58:10 +00:00
|
|
|
|
|
|
|
# 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";
|
2019-10-04 19:31:27 +00:00
|
|
|
|
|
|
|
nix.extraOptions = ''
|
|
|
|
allowed-uris = https://github.com/
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
nixosModules.hydraProxy = {
|
|
|
|
services.httpd = {
|
|
|
|
enable = true;
|
|
|
|
adminAddr = "hydra-admin@example.org";
|
|
|
|
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/
|
|
|
|
'';
|
|
|
|
};
|
2019-09-24 17:58:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nixosConfigurations.container = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules =
|
2019-11-07 17:46:32 +00:00
|
|
|
[ self.nixosModules.hydraTest
|
|
|
|
self.nixosModules.hydraProxy
|
|
|
|
{ system.configurationRevision = self.rev;
|
2019-09-24 17:58:10 +00:00
|
|
|
|
|
|
|
boot.isContainer = true;
|
|
|
|
networking.useDHCP = false;
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
|
|
|
networking.hostName = "hydra";
|
|
|
|
|
|
|
|
services.hydra-dev.useSubstitutes = true;
|
|
|
|
}
|
|
|
|
];
|
2019-09-17 15:25:59 +00:00
|
|
|
};
|
2019-08-09 11:10:50 +00:00
|
|
|
|
|
|
|
};
|
2019-05-08 11:28:02 +00:00
|
|
|
}
|