Skip to content

Commit

Permalink
tests: Add OpenSUSE platform
Browse files Browse the repository at this point in the history
  • Loading branch information
tbabej authored and pbeckingham committed Feb 7, 2019
1 parent 0b20a7e commit 012430c
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -30,6 +30,10 @@ matrix:
os: linux
env: CONTAINER=gentoo
services: docker
- name: "OpenSUSE 15.0"
os: linux
env: CONTAINER=opensuse1500
services: docker
- name: "Mac OS X 10.13"
os: osx
env: CONTAINER=osx
Expand Down
8 changes: 8 additions & 0 deletions docker-compose.yml
Expand Up @@ -56,3 +56,11 @@ services:
security_opt:
- label=type:container_runtime_t
tty: true
test-opensuse1500:
build:
context: .
dockerfile: test/docker/opensuse1500
network_mode: "host"
security_opt:
- label=type:container_runtime_t
tty: true
25 changes: 25 additions & 0 deletions test/docker/opensuse1500
@@ -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"]

0 comments on commit 012430c

Please sign in to comment.