mirror of https://github.com/containers/podman.git
commit
d083d6a8fc
|
@ -107,7 +107,7 @@ gating_task:
|
||||||
# The entrypoint.sh script ensures a prestine copy of $SRCPATH is
|
# The entrypoint.sh script ensures a prestine copy of $SRCPATH is
|
||||||
# available at $GOSRC before executing make instructions.
|
# available at $GOSRC before executing make instructions.
|
||||||
image: "quay.io/libpod/gate:master"
|
image: "quay.io/libpod/gate:master"
|
||||||
cpu: 4
|
cpu: 8
|
||||||
memory: 12
|
memory: 12
|
||||||
|
|
||||||
timeout_in: 20m
|
timeout_in: 20m
|
||||||
|
@ -138,6 +138,7 @@ gating_task:
|
||||||
# N/B: need 'clean' so some committed files are re-generated.
|
# N/B: need 'clean' so some committed files are re-generated.
|
||||||
- '/usr/local/bin/entrypoint.sh clean podman-remote |& ${TIMESTAMP}'
|
- '/usr/local/bin/entrypoint.sh clean podman-remote |& ${TIMESTAMP}'
|
||||||
- '/usr/local/bin/entrypoint.sh clean podman BUILDTAGS="exclude_graphdriver_devicemapper selinux seccomp" |& ${TIMESTAMP}'
|
- '/usr/local/bin/entrypoint.sh clean podman BUILDTAGS="exclude_graphdriver_devicemapper selinux seccomp" |& ${TIMESTAMP}'
|
||||||
|
- '/usr/local/bin/entrypoint.sh local-cross |& ${TIMESTAMP}'
|
||||||
- '/usr/local/bin/entrypoint.sh podman-remote-darwin |& ${TIMESTAMP}'
|
- '/usr/local/bin/entrypoint.sh podman-remote-darwin |& ${TIMESTAMP}'
|
||||||
- '/usr/local/bin/entrypoint.sh podman-remote-windows |& ${TIMESTAMP}'
|
- '/usr/local/bin/entrypoint.sh podman-remote-windows |& ${TIMESTAMP}'
|
||||||
|
|
||||||
|
|
5
Makefile
5
Makefile
|
@ -108,8 +108,9 @@ endif
|
||||||
GOMD2MAN ?= $(shell command -v go-md2man || echo '$(GOBIN)/go-md2man')
|
GOMD2MAN ?= $(shell command -v go-md2man || echo '$(GOBIN)/go-md2man')
|
||||||
|
|
||||||
CROSS_BUILD_TARGETS := \
|
CROSS_BUILD_TARGETS := \
|
||||||
bin/podman.cross.darwin.amd64 \
|
bin/podman.cross.linux.amd64 \
|
||||||
bin/podman.cross.linux.amd64
|
bin/podman.cross.linux.ppc64le \
|
||||||
|
bin/podman.cross.linux.arm
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
all: binaries docs
|
all: binaries docs
|
||||||
|
|
Loading…
Reference in New Issue