mirror of
https://github.com/clearlinux/mixer-tools.git
synced 2026-09-03 12:11:45 +00:00
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>
6 lines
313 B
Docker
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"]
|