From 2b9525980e080725101ccb92f9ef95bf2adf83f5 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sun, 6 Dec 2020 00:28:04 -0500 Subject: [PATCH] ci: Removing support for Ubuntu 16.04 Ubuntu 16.04 has reached EOL and the 2.6.0 branch does not compile there. --- .travis.yml | 4 ---- test/docker/ubuntu1604 | 27 --------------------------- 2 files changed, 31 deletions(-) delete mode 100644 test/docker/ubuntu1604 diff --git a/.travis.yml b/.travis.yml index b72147f9e..f131f7eb3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,10 +22,6 @@ matrix: os: linux env: CONTAINER=debiantesting services: docker - - name: "Ubuntu 16.04" - os: linux - env: CONTAINER=ubuntu1604 - services: docker - name: "Ubuntu 18.04" os: linux env: CONTAINER=ubuntu1804 diff --git a/test/docker/ubuntu1604 b/test/docker/ubuntu1604 deleted file mode 100644 index 13904007e..000000000 --- a/test/docker/ubuntu1604 +++ /dev/null @@ -1,27 +0,0 @@ -FROM ubuntu:16.04 - -RUN apt-get update -RUN 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"]