From 8d979e093e8a5d79f192f123dbcfc2c973d3bb21 Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Thu, 28 Jan 2021 11:47:05 -0500 Subject: Cirrus: Build static podman-remote Prior to this commit, the "Static Build" task only produced a `bin/podman`. Update this to also include a `bin/podman-remote` binary. Update the pr-should-include-tests checker to ignore the `nix` directory, which isn't applicable. Lastly, restore the static build task to 'required' for CI success. Leaving the comment inplace in case it needs to be bypassed in the future on short notice. Signed-off-by: Chris Evich --- nix/default.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'nix') diff --git a/nix/default.nix b/nix/default.nix index 13b4585ea..7745d8b50 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -49,9 +49,11 @@ let buildPhase = '' patchShebangs . make bin/podman + make bin/podman-remote ''; installPhase = '' install -Dm755 bin/podman $out/bin/podman + install -Dm755 bin/podman-remote $out/bin/podman-remote ''; }; in self -- cgit v1.2.3-54-g00ecf