mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-28 02:37:09 +00:00
buildkite: remove package from test closure
This commit is contained in:
parent
25b2f87b58
commit
f1f6a81b9a
2 changed files with 6 additions and 2 deletions
|
@ -98,6 +98,7 @@ let
|
|||
tests.nixpkgs-overlays = makeTest ./tests/nixpkgs-overlays.nix;
|
||||
tests.programs-zsh = makeTest ./tests/programs-zsh.nix;
|
||||
tests.services-activate-system = makeTest ./tests/services-activate-system.nix;
|
||||
tests.services-buildkite-agent = makeTest ./tests/services-buildkite-agent.nix;
|
||||
tests.services-skhd = makeTest ./tests/services-skhd.nix;
|
||||
tests.system-defaults-write = makeTest ./tests/system-defaults-write.nix;
|
||||
tests.system-keyboard-mapping = makeTest ./tests/system-keyboard-mapping.nix;
|
||||
|
@ -106,7 +107,6 @@ let
|
|||
tests.system-path-fish = makeTest ./tests/system-path-fish.nix;
|
||||
tests.system-shells = makeTest ./tests/system-shells.nix;
|
||||
tests.users-groups = makeTest ./tests/users-groups.nix;
|
||||
tests.buildkite-agent = makeTest ./tests/buildkite-agent.nix;
|
||||
|
||||
}
|
||||
// (mapTestOn (packagePlatforms packageSet));
|
||||
|
|
|
@ -1,10 +1,14 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
let
|
||||
buildkite-agent = pkgs.runCommand "buildkite-agent-0.0.0" {} "mkdir $out";
|
||||
tokenPath = pkgs.writeText "buildkite_token" "TEST_TOKEN";
|
||||
in {
|
||||
in
|
||||
|
||||
{
|
||||
services.buildkite-agent = {
|
||||
enable = true;
|
||||
package = buildkite-agent;
|
||||
extraConfig = "yolo=1";
|
||||
openssh.privateKeyPath = "/dev/null";
|
||||
openssh.publicKeyPath = "/dev/null";
|
Loading…
Add table
Reference in a new issue