aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2021-01-28 11:47:05 -0500
committerChris Evich <cevich@redhat.com>2021-02-01 10:19:33 -0500
commit6c595dd31155f5af377ece1f106e3bed4e395494 (patch)
treeff869530907bcb8f131c0996ed076fd7fe44889a
parentbf0eb84f8bc54063797f450bdb85d61ce22f2683 (diff)
downloadpodman-6c595dd31155f5af377ece1f106e3bed4e395494.tar.gz
podman-6c595dd31155f5af377ece1f106e3bed4e395494.tar.bz2
podman-6c595dd31155f5af377ece1f106e3bed4e395494.zip
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 <cevich@redhat.com>
-rw-r--r--.cirrus.yml2
-rw-r--r--nix/default.nix2
2 files changed, 3 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index e1ee88da7..fbff05bec 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -335,7 +335,7 @@ static_alt_build_task:
- build
# Community-maintained task, may fail on occasion. If so, uncomment
# the next line and file an issue with details about the failure.
- allow_failures: $CI == $CI
+ # allow_failures: $CI == $CI
gce_instance: *bigvm
env:
<<: *stdenvars
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