Files
mixer-tools/Dockerfile
T
Rodrigo Chiossi 632a414e80 travis: Parallelize bat tests
This PR breaks bat tests into individual test runs within travis
infrastructure. This is a workaround the current test failures on travis
due to infrastructure limitations and allow us to reset a single test in
the case of a failure.

This patch also disables create-mix-bump-version-add-remove-bundles test
since it is unable to complete in travis infra.

Signed-off-by: Rodrigo Chiossi <rodrigo.chiossi@intel.com>
2019-10-22 19:44:16 +02:00

6 lines
313 B
Docker

FROM clearlinux/mixer-ci:latest
ENV LC_ALL="en_US.UTF-8"
COPY --chown=clr:clr . /home/clr/go/src/github.com/clearlinux/mixer-tools/
WORKDIR /home/clr/go/src/github.com/clearlinux/mixer-tools
ENTRYPOINT ["/bin/sh", "-c", "make && sudo -E make install && make lint && make check && cd bat/tests/$TEST_DIR && make"]