tests: Add support for Fedora 29

This commit is contained in:
Tomas Babej 2019-01-01 12:01:24 -05:00
parent 4dbad4c1e2
commit eed5a30ecc
3 changed files with 38 additions and 0 deletions

26
test/docker/fedora29 Normal file
View file

@ -0,0 +1,26 @@
FROM fedora:29
RUN dnf update -y
RUN dnf install python git gcc gcc-c++ cmake make gnutls-devel libuuid-devel -y
# Setup language environment
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
# Setup taskwarrior
ADD . /root/code/
WORKDIR /root/code/
RUN git clean -dfx
RUN git submodule init
RUN git submodule update
RUN cmake -DCMAKE_BUILD_TYPE=debug .
RUN make -j2
RUN make install
RUN task --version
# Setup tests
WORKDIR /root/code/test/
RUN make
CMD ["bash", "-c", "./run_all ; cat all.log | grep 'not ok' ; ./problems"]