2023-05-13 02:19:16 +03:00
|
|
|
distributable:
|
|
|
|
url: https://github.com/containers/podman/archive/refs/tags/v{{version}}.tar.gz
|
|
|
|
strip-components: 1
|
|
|
|
|
|
|
|
versions:
|
|
|
|
github: containers/podman/releases/tags
|
|
|
|
|
|
|
|
platforms:
|
|
|
|
- darwin
|
|
|
|
#fixme: - linux once qemu is built
|
|
|
|
|
|
|
|
provides:
|
|
|
|
- bin/podman
|
|
|
|
- bin/podman-mac-helper
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
qemu.org: '*'
|
|
|
|
github.com/containers/gvisor-tap-vsock: '*'
|
|
|
|
|
|
|
|
build:
|
|
|
|
dependencies:
|
|
|
|
go.dev: ^1.18
|
|
|
|
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/../../../$GVISOR_MAJOR/bin",_
|
|
|
|
|
2023-10-31 22:21:36 +03:00
|
|
|
- make --jobs {{ hw.concurrency }} podman-remote
|
2023-05-13 02:19:16 +03:00
|
|
|
- make --jobs {{ hw.concurrency }} podman-mac-helper
|
|
|
|
- mkdir -p "{{ prefix }}"/bin
|
|
|
|
- mv bin/"{{ hw.platform }}"/* "{{ prefix }}"/bin
|
|
|
|
- ln -s podman "{{ prefix }}"/bin/podman-remote
|
|
|
|
env:
|
|
|
|
# path for gvproxy to add to platform config
|
|
|
|
GVISOR_MAJOR: |-
|
|
|
|
$(cd "{{deps.github.com/containers/gvisor-tap-vsock.prefix}}/../\
|
|
|
|
/v{{deps.github.com/containers/gvisor-tap-vsock.version.major}}" \
|
2023-10-02 04:27:27 +03:00
|
|
|
&& pwd | sed -e "s_$PKGX_DIR/__")
|
2023-05-13 02:19:16 +03:00
|
|
|
CGO_ENABLED: 1
|
|
|
|
|
|
|
|
test:
|
|
|
|
script: |
|
|
|
|
podman-remote -v | grep "podman-remote version {{ version }}"
|
|
|
|
(podman info 2>&1 || true) | grep "Cannot connect to Podman."
|
|
|
|
(podman machine init --image-path fake-testimage fake-testvm 2>&1 || true) | grep "Error: open fake-testimage: no such file or directory"
|