buildkite-agent: add link to nixos test
This commit is contained in:
parent
0b85cb4d63
commit
7c17768a48
|
@ -1,5 +1,6 @@
|
||||||
{ fetchFromGitHub, lib, buildGoModule,
|
{ fetchFromGitHub, lib, buildGoModule,
|
||||||
makeWrapper, coreutils, git, openssh, bash, gnused, gnugrep }:
|
makeWrapper, coreutils, git, openssh, bash, gnused, gnugrep,
|
||||||
|
nixosTests }:
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
name = "buildkite-agent-${version}";
|
name = "buildkite-agent-${version}";
|
||||||
version = "3.29.0";
|
version = "3.29.0";
|
||||||
|
@ -30,6 +31,10 @@ buildGoModule rec {
|
||||||
--prefix PATH : '${lib.makeBinPath [ openssh git coreutils gnused gnugrep ]}'
|
--prefix PATH : '${lib.makeBinPath [ openssh git coreutils gnused gnugrep ]}'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru.tests = {
|
||||||
|
smoke-test = nixosTests.buildkite-agents;
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Build runner for buildkite.com";
|
description = "Build runner for buildkite.com";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
|
Loading…
Reference in New Issue