Merge pull request #2464 from mheon/build_test_no_varlink

Add a task to Cirrus gating to build w/o Varlink
This commit is contained in:
OpenShift Merge Robot
2019-02-27 21:54:04 +01:00
committed by GitHub
2 changed files with 5 additions and 2 deletions

View File

@ -118,6 +118,11 @@ gating_task:
- '/usr/local/bin/entrypoint.sh vendor'
- 'cd /go/src/github.com/containers/libpod && ./hack/tree_status.sh'
# This task builds Podman with different buildtags to ensure the build does
# not break.
build_script:
- '/usr/local/bin/entrypoint.sh clean podman BUILDTAGS="exclude_graphdriver_devicemapper selinux seccomp"'
build_each_commit_task:

View File

@ -49,8 +49,6 @@ WORKDIR $GOSRC
# Install dependencies
RUN set -x && \
go get -u github.com/mailru/easyjson/... && \
install -D -m 755 "$GOPATH"/bin/easyjson /usr/bin/ && \
make install.tools && \
install -D -m 755 $GOSRC/contrib/gate/entrypoint.sh /usr/local/bin/ && \
rm -rf "$GOSRC"