mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
parent
d175fc3af4
commit
852f3beab8
2 changed files with 42 additions and 45 deletions
|
@ -370,7 +370,7 @@ in
|
||||||
dnsdist = import ./dnsdist.nix { inherit pkgs runTest; };
|
dnsdist = import ./dnsdist.nix { inherit pkgs runTest; };
|
||||||
doas = runTest ./doas.nix;
|
doas = runTest ./doas.nix;
|
||||||
docker = runTestOn [ "aarch64-linux" "x86_64-linux" ] ./docker.nix;
|
docker = runTestOn [ "aarch64-linux" "x86_64-linux" ] ./docker.nix;
|
||||||
docker-rootless = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./docker-rootless.nix { };
|
docker-rootless = runTestOn [ "aarch64-linux" "x86_64-linux" ] ./docker-rootless.nix;
|
||||||
docker-registry = handleTest ./docker-registry.nix { };
|
docker-registry = handleTest ./docker-registry.nix { };
|
||||||
docker-tools = handleTestOn [ "x86_64-linux" ] ./docker-tools.nix { };
|
docker-tools = handleTestOn [ "x86_64-linux" ] ./docker-tools.nix { };
|
||||||
docker-tools-nix-shell = runTest ./docker-tools-nix-shell.nix;
|
docker-tools-nix-shell = runTest ./docker-tools-nix-shell.nix;
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
# This test runs docker and checks if simple container starts
|
# This test runs docker and checks if simple container starts
|
||||||
|
{ lib, pkgs, ... }:
|
||||||
import ./make-test-python.nix (
|
{
|
||||||
{ lib, pkgs, ... }:
|
|
||||||
{
|
|
||||||
name = "docker-rootless";
|
name = "docker-rootless";
|
||||||
meta = with pkgs.lib.maintainers; {
|
meta = with pkgs.lib.maintainers; {
|
||||||
maintainers = [ abbradar ];
|
maintainers = [ abbradar ];
|
||||||
|
@ -47,5 +45,4 @@ import ./make-test-python.nix (
|
||||||
machine.succeed("${sudo} docker ps | grep sleeping")
|
machine.succeed("${sudo} docker ps | grep sleeping")
|
||||||
machine.succeed("${sudo} docker stop sleeping")
|
machine.succeed("${sudo} docker stop sleeping")
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
)
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue