mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
ef4baf2db5
closes #5992
72 lines
2 KiB
YAML
72 lines
2 KiB
YAML
distributable:
|
|
url: https://github.com/containers/podman/archive/refs/tags/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: containers/podman/releases/tags
|
|
|
|
provides:
|
|
linux:
|
|
- bin/podman
|
|
- bin/podman-remote
|
|
darwin:
|
|
- bin/podman
|
|
- bin/podman-remote
|
|
- bin/podman-mac-helper
|
|
|
|
dependencies:
|
|
qemu.org: '*'
|
|
github.com/containers/gvisor-tap-vsock: '*'
|
|
darwin:
|
|
github.com/crc-org/vfkit: '*'
|
|
|
|
companions:
|
|
openssh.com: '*' # ssh-keygen
|
|
|
|
build:
|
|
dependencies:
|
|
go.dev: ^1.18
|
|
gnu.org/coreutils: '*'
|
|
script:
|
|
# podman searches a compile-time configured set of paths for helper binaries
|
|
# so we add a relative lookup for the major version of gvproxy we require
|
|
- run: |
|
|
sed -i.bak -f $PROP config_{darwin,linux}.go
|
|
rm config_{darwin,linux}.go.bak
|
|
working-directory: vendor/github.com/containers/common/pkg/config
|
|
prop: |-
|
|
s_\(^var defaultHelperBinariesDir.*\)_\
|
|
\1\n "$BINDIR/../../../github.com/containers/gvisor-tap-vsock/v{{deps.github.com/containers/gvisor-tap-vsock.version.major}}/bin",_
|
|
|
|
- mkdir -p "{{ prefix }}"/bin
|
|
- make --jobs {{ hw.concurrency }} podman-remote
|
|
|
|
- run: |
|
|
mv bin/podman-remote "{{ prefix }}"/bin/
|
|
ln -s podman-remote "{{ prefix }}"/bin/podman
|
|
if: linux
|
|
|
|
- run: |
|
|
make --jobs {{ hw.concurrency }} podman-mac-helper
|
|
mv bin/darwin/podman{-mac-helper,} "{{ prefix }}"/bin/
|
|
ln -s podman "{{ prefix }}"/bin/podman-remote
|
|
if: darwin
|
|
env:
|
|
CGO_ENABLED: 1
|
|
linux:
|
|
EXTRA_LDFLAGS: -buildmode=pie
|
|
|
|
test:
|
|
script:
|
|
- podman-remote -v | grep "podman-remote version {{ version }}"
|
|
- (podman info 2>&1 || true) | grep "Cannot connect to Podman."
|
|
|
|
# won't run as root
|
|
- |
|
|
if test $(id -g) = 0; then
|
|
exit 0
|
|
fi
|
|
|
|
# error message changed in v5
|
|
- "(podman machine init --image-path fake-testimage fake-testvm 2>&1 || true) | grep -E 'Error: (open|stat) fake-testimage: no such file or directory'"
|