summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2021-12-06 15:57:13 -0500
committerChris Evich <cevich@redhat.com>2021-12-06 16:00:17 -0500
commit851349345b4bbf5c4da8a1e5d102e08a3b781a9b (patch)
tree8397b81347e449ad62864abe144be1083cd41a39
parent9af07fd3ed7157f5944c35e83ff96ed8909d7be3 (diff)
downloadpodman-851349345b4bbf5c4da8a1e5d102e08a3b781a9b.tar.gz
podman-851349345b4bbf5c4da8a1e5d102e08a3b781a9b.tar.bz2
podman-851349345b4bbf5c4da8a1e5d102e08a3b781a9b.zip
Cirrus: Remove remnants of nix-based static build
Simply a readme update and dead-code cleanup. Signed-off-by: Chris Evich <cevich@redhat.com>
-rw-r--r--README.md10
-rwxr-xr-xcontrib/cirrus/runner.sh14
2 files changed, 0 insertions, 24 deletions
diff --git a/README.md b/README.md
index 2b384239f..c2a7130f1 100644
--- a/README.md
+++ b/README.md
@@ -166,13 +166,3 @@ familiar container cli commands. For more details, see the
Podman formerly offered a Varlink-based API for remote management of containers. However, this API
was replaced by the REST API. Varlink support has been removed as of the 3.0 release.
For more details, you can see [this blog](https://podman.io/blogs/2020/01/17/podman-new-api.html).
-
-## Static Binary Builds
-The Cirrus CI integration within this repository contains a `Static_Build` job
-which produces static Podman binaries for testing purposes. Please note that
-these binaries are not officially supported with respect to feature-completeness
-and functionality and should be only used for testing. To download these binaries,
-load the build link with the commit SHA at
-[main](https://cirrus-ci.com/github/containers/podman/main) or
-`https://cirrus-ci.com/github/containers/podman/pull/<selected PR>`
-and open the artifacts folder within `Static Build`.
diff --git a/contrib/cirrus/runner.sh b/contrib/cirrus/runner.sh
index 899d14c96..2c961da06 100755
--- a/contrib/cirrus/runner.sh
+++ b/contrib/cirrus/runner.sh
@@ -259,20 +259,6 @@ function _run_altbuild() {
make podman-release-${arch}.tar.gz GOARCH=$arch
done
;;
- *Static*)
- req_env_vars CTR_FQIN
- [[ "$UID" -eq 0 ]] || \
- die "Static build must execute nixos container as root on host"
- podman run -i --rm \
- -e CACHIX_AUTH_TOKEN \
- -v $PWD:$PWD:Z -w $PWD $CTR_FQIN sh -c \
- "nix-env -iA cachix -f https://cachix.org/api/v1/install && \
- cachix use podman && \
- nix-build nix && \
- nix-store -qR --include-outputs \$(nix-instantiate nix/default.nix) | grep -v podman | cachix push podman && \
- cp -R result/bin ."
- rm result # makes cirrus puke
- ;;
*)
die "Unknown/Unsupported \$$ALT_NAME '$ALT_NAME'"
esac