ci: Rename Arch container to make it clear we're testing on rolling base

This commit is contained in:
Tomas Babej 2020-12-06 02:16:40 -05:00
parent a6bbeeaab5
commit af49667adb
No known key found for this signature in database
GPG key ID: B0747C6578F7D2F5
3 changed files with 4 additions and 4 deletions

26
test/docker/arch Normal file
View file

@ -0,0 +1,26 @@
FROM archlinux/archlinux:base-devel
RUN pacman -Sy --noconfirm archlinux-keyring
RUN pacman -Syyu --noconfirm
RUN pacman -S --noconfirm gnutls util-linux bash-completion cmake python3 git libfaketime
# Setup language environment
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 -v ; cat all.log | grep 'not ok' ; ./problems"]