From dd133a1ad25f75e5ddd53ed6cf59eedfb6838f54 Mon Sep 17 00:00:00 2001 From: baude Date: Wed, 24 Jan 2018 08:45:55 -0600 Subject: Initial gingko work This implements the ginkgo integration test framework for podman. As tests are migrated from bats to ginkgo, we will still run both integration suites. When a test is migrated, we remove the tests from bats at that time. All new tests should be just for the ginkgo framework. One exception is that we only run the ginkgo suit in the travis/ubuntu environment. The CentOS and Fedora PAPR nodes will more than cover those. Signed-off-by: baude Closes: #261 Approved by: baude --- Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index c046c6ad3..affcf8b39 100644 --- a/Dockerfile +++ b/Dockerfile @@ -103,6 +103,22 @@ RUN set -x \ && cp "$GOPATH"/bin/crictl /usr/bin/ \ && rm -rf "$GOPATH" +# Install ginkgo +RUN set -x \ + && export GOPATH=/go \ + && go get -u github.com/onsi/ginkgo/ginkgo \ + && install -D -m 755 "$GOPATH"/bin/ginkgo /usr/bin/ + +# Install gomega +RUN set -x \ + && export GOPATH=/go \ + && go get github.com/onsi/gomega/... + +# Install cni config +#RUN make install.cni +RUN mkdir -p /etc/cni/net.d/ +COPY cni/87-podman-bridge.conflist /etc/cni/net.d/87-podman-bridge.conflist + # Make sure we have some policy for pulling images RUN mkdir -p /etc/containers COPY test/policy.json /etc/containers/policy.json -- cgit v1.2.3-54-g00ecf