tests: Remove Ubuntu 20.10 (now beyond EOL) from the test matrix
This commit is contained in:
3
.github/workflows/tests.yaml
vendored
3
.github/workflows/tests.yaml
vendored
@@ -30,9 +30,6 @@ jobs:
|
|||||||
- name: "Ubuntu 20.04"
|
- name: "Ubuntu 20.04"
|
||||||
runner: ubuntu-latest
|
runner: ubuntu-latest
|
||||||
dockerfile: ubuntu2004
|
dockerfile: ubuntu2004
|
||||||
- name: "Ubuntu 20.10"
|
|
||||||
runner: ubuntu-latest
|
|
||||||
dockerfile: ubuntu2010
|
|
||||||
- name: "Ubuntu 21.04"
|
- name: "Ubuntu 21.04"
|
||||||
runner: ubuntu-latest
|
runner: ubuntu-latest
|
||||||
dockerfile: ubuntu2104
|
dockerfile: ubuntu2104
|
||||||
|
|||||||
@@ -64,14 +64,6 @@ services:
|
|||||||
security_opt:
|
security_opt:
|
||||||
- label=type:container_runtime_t
|
- label=type:container_runtime_t
|
||||||
tty: true
|
tty: true
|
||||||
test-ubuntu2010:
|
|
||||||
build:
|
|
||||||
context: .
|
|
||||||
dockerfile: test/docker/ubuntu2010
|
|
||||||
network_mode: "host"
|
|
||||||
security_opt:
|
|
||||||
- label=type:container_runtime_t
|
|
||||||
tty: true
|
|
||||||
test-ubuntu2104:
|
test-ubuntu2104:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
FROM ubuntu:20.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"]
|
|
||||||
Reference in New Issue
Block a user