tests: Add Ubuntu 21.10 into the test matrix

This commit is contained in:
Tomas Babej 2021-11-06 12:59:16 -04:00
parent 6fae705b43
commit da43078eba
No known key found for this signature in database
GPG key ID: B0747C6578F7D2F5
3 changed files with 38 additions and 0 deletions

View file

@ -36,6 +36,9 @@ jobs:
- name: "Ubuntu 21.04"
runner: ubuntu-latest
dockerfile: ubuntu2104
- name: "Ubuntu 21.10"
runner: ubuntu-latest
dockerfile: ubuntu2110
- name: "OpenSUSE 15.0"
runner: ubuntu-latest
dockerfile: opensuse1500

View file

@ -80,6 +80,14 @@ services:
security_opt:
- label=type:container_runtime_t
tty: true
test-ubuntu2110:
build:
context: .
dockerfile: test/docker/ubuntu2110
network_mode: "host"
security_opt:
- label=type:container_runtime_t
tty: true
test-debianstable:
build:
context: .

27
test/docker/ubuntu2110 Normal file
View file

@ -0,0 +1,27 @@
FROM ubuntu:21.10
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"]