mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-19 09:53:08 +02:00
ci: Add Ubuntu 20.04
This commit is contained in:
parent
1b745bc505
commit
497262d23c
3 changed files with 39 additions and 8 deletions
|
@ -30,6 +30,10 @@ matrix:
|
||||||
os: linux
|
os: linux
|
||||||
env: CONTAINER=ubuntu1804
|
env: CONTAINER=ubuntu1804
|
||||||
services: docker
|
services: docker
|
||||||
|
- name: "Ubuntu 20.04"
|
||||||
|
os: linux
|
||||||
|
env: CONTAINER=ubuntu2004
|
||||||
|
services: docker
|
||||||
- name: "OpenSUSE 15.0"
|
- name: "OpenSUSE 15.0"
|
||||||
os: linux
|
os: linux
|
||||||
env: CONTAINER=opensuse1500
|
env: CONTAINER=opensuse1500
|
||||||
|
|
|
@ -24,14 +24,6 @@ services:
|
||||||
security_opt:
|
security_opt:
|
||||||
- label=type:container_runtime_t
|
- label=type:container_runtime_t
|
||||||
tty: true
|
tty: true
|
||||||
test-ubuntu1604:
|
|
||||||
build:
|
|
||||||
context: .
|
|
||||||
dockerfile: test/docker/ubuntu1604
|
|
||||||
network_mode: "host"
|
|
||||||
security_opt:
|
|
||||||
- label=type:container_runtime_t
|
|
||||||
tty: true
|
|
||||||
test-ubuntu1804:
|
test-ubuntu1804:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
|
@ -40,6 +32,14 @@ services:
|
||||||
security_opt:
|
security_opt:
|
||||||
- label=type:container_runtime_t
|
- label=type:container_runtime_t
|
||||||
tty: true
|
tty: true
|
||||||
|
test-ubuntu2004:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: test/docker/ubuntu2004
|
||||||
|
network_mode: "host"
|
||||||
|
security_opt:
|
||||||
|
- label=type:container_runtime_t
|
||||||
|
tty: true
|
||||||
test-debianstable:
|
test-debianstable:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
|
|
27
test/docker/ubuntu2004
Normal file
27
test/docker/ubuntu2004
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
FROM ubuntu:20.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 -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"]
|
Loading…
Add table
Add a link
Reference in a new issue