diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-12-07 11:03:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 11:03:58 +0000 |
commit | 2f11e2ac53269d2aafd0325e17e7c9bfda119dea (patch) | |
tree | c9d6773b8e580a8bb3fdc5b9303182656b188824 /contrib | |
parent | 7d290b3f6245d2bc68e3cb689c5b3252561ae566 (diff) | |
parent | 851349345b4bbf5c4da8a1e5d102e08a3b781a9b (diff) | |
download | podman-2f11e2ac53269d2aafd0325e17e7c9bfda119dea.tar.gz podman-2f11e2ac53269d2aafd0325e17e7c9bfda119dea.tar.bz2 podman-2f11e2ac53269d2aafd0325e17e7c9bfda119dea.zip |
Merge pull request #12526 from cevich/remove_static
[CI:DOCS] Cirrus: Remove remnants of nix-based static build
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/cirrus/runner.sh | 14 |
1 files changed, 0 insertions, 14 deletions
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 |