mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-19 00:43:07 +02:00
tests: Add dockerfile for Ubuntu 22.04
This commit is contained in:
parent
8845055abb
commit
2f30bc8cbf
1 changed files with 27 additions and 0 deletions
27
test/docker/ubuntu2204
Normal file
27
test/docker/ubuntu2204
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
FROM ubuntu:22.04
|
||||||
|
|
||||||
|
RUN apt-get update
|
||||||
|
RUN DEBIAN_FRONTEND="noninteractive" apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev faketime locales python3
|
||||||
|
|
||||||
|
# Setup language environment
|
||||||
|
RUN locale-gen en_US.UTF-8
|
||||||
|
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 -j8
|
||||||
|
RUN make install
|
||||||
|
RUN task --version
|
||||||
|
|
||||||
|
# Setup tests
|
||||||
|
WORKDIR /root/code/test/
|
||||||
|
RUN make -j8
|
||||||
|
|
||||||
|
CMD ["bash", "-c", "./run_all -v ; cat all.log | grep 'not ok' ; ./problems"]
|
Loading…
Add table
Add a link
Reference in a new issue