tests: Add OpenSUSE platform

This commit is contained in:
Tomas Babej 2019-01-01 14:10:23 -05:00
parent dcbefe51bb
commit 86c7c84fec
3 changed files with 37 additions and 0 deletions

View file

@ -30,6 +30,10 @@ matrix:
os: linux os: linux
env: CONTAINER=gentoo env: CONTAINER=gentoo
services: docker services: docker
- name: "OpenSUSE 15.0"
os: linux
env: CONTAINER=opensuse1500
services: docker
- name: "Mac OS X 10.13" - name: "Mac OS X 10.13"
os: osx os: osx
env: CONTAINER=osx env: CONTAINER=osx

View file

@ -56,3 +56,11 @@ services:
security_opt: security_opt:
- label=type:container_runtime_t - label=type:container_runtime_t
tty: true tty: true
test-opensuse1500:
build:
context: .
dockerfile: test/docker/opensuse1500
network_mode: "host"
security_opt:
- label=type:container_runtime_t
tty: true

25
test/docker/opensuse1500 Normal file
View file

@ -0,0 +1,25 @@
FROM opensuse/leap:15
RUN zypper install -y python awk coreutils git gcc gcc-c++ cmake make libgnutls-devel libuuid-devel
# 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"]