tests: Remove tests on F31

This distribution release is more than a year out of its support window.
This commit is contained in:
Tomas Babej 2021-11-06 12:52:21 -04:00
parent 2d4776586d
commit 4559287d07
No known key found for this signature in database
GPG key ID: B0747C6578F7D2F5
3 changed files with 0 additions and 37 deletions

View file

@ -9,9 +9,6 @@ jobs:
- name: "Centos 8" - name: "Centos 8"
runner: ubuntu-latest runner: ubuntu-latest
dockerfile: centos8 dockerfile: centos8
- name: "Fedora 31"
runner: ubuntu-latest
dockerfile: fedora31
- name: "Fedora 32" - name: "Fedora 32"
runner: ubuntu-latest runner: ubuntu-latest
dockerfile: fedora32 dockerfile: fedora32

View file

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

View file

@ -1,26 +0,0 @@
FROM fedora:31
RUN dnf update -y
RUN dnf install python3 git gcc gcc-c++ cmake make gnutls-devel libuuid-devel libfaketime glibc-langpack-en -y
# 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 -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"]