diff options
author | Sergey V. Lobanov <sergey@lobanov.in> | 2024-07-02 21:57:15 +0200 |
---|---|---|
committer | Sergey V. Lobanov <sergey@lobanov.in> | 2024-07-02 21:57:15 +0200 |
commit | 2a0aec6c8fc868ab141ae1371147556e7373ccf8 (patch) | |
tree | 99523a3c22b40dfd207a8d2c46e18191a74bbe5c | |
parent | 27753b7429fc0f151019e90256ddea95c2638ecd (diff) | |
download | accel-ppp-2a0aec6c8fc868ab141ae1371147556e7373ccf8.tar.gz accel-ppp-2a0aec6c8fc868ab141ae1371147556e7373ccf8.zip |
ci: remove debian10 support
Debian10 LTS is EoL (ref: https://wiki.debian.org/LTS) so it is removed
from CI.
Debian10 ELTS is maintained by third-party organization, only some packages
are maintained so there is no reason to support Debian10 in CI
-rw-r--r-- | .github/workflows/build-and-run.yml | 2 | ||||
-rw-r--r-- | .github/workflows/run-tests.yml | 7 |
2 files changed, 0 insertions, 9 deletions
diff --git a/.github/workflows/build-and-run.yml b/.github/workflows/build-and-run.yml index d788eda3..fb6dd798 100644 --- a/.github/workflows/build-and-run.yml +++ b/.github/workflows/build-and-run.yml @@ -85,7 +85,6 @@ jobs: matrix: distro: [ - "debian:10", "debian:11", "debian:12", "debian:trixie", @@ -105,7 +104,6 @@ jobs: debian:trixie) DISTRO=debian13; CPACK_TYPE=Debian13 ;; debian:12) DISTRO=debian12; CPACK_TYPE=Debian12 ;; debian:11) CPACK_TYPE=Debian11 ;; - debian:10) CPACK_TYPE=Debian10 ;; ubuntu:24.04) CPACK_TYPE=Ubuntu24 ; HEADERS_SUFFIX=generic ;; ubuntu:22.04) CPACK_TYPE=Ubuntu22 ; HEADERS_SUFFIX=generic ;; ubuntu:20.04) CPACK_TYPE=Ubuntu20 ; HEADERS_SUFFIX=generic ;; diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 303dfd0a..3f8016a8 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -46,11 +46,6 @@ jobs: untar: true format: raw - - distro: Debian10 - image: https://cloud.debian.org/images/cloud/buster/latest/debian-10-generic-amd64.tar.xz - untar: true - format: raw - steps: - name: Check out repository code uses: actions/checkout@v4 @@ -177,8 +172,6 @@ jobs: - name: Run tests (all) timeout-minutes: 5 - # vlan-mon tests fail on Debian10 due to Debian10 bug so don't run all tests on deb10 - if: ${{ matrix.distro != 'Debian10' }} run: > ssh -i ssh-key -p2222 user@localhost "cd accel-ppp/tests && sudo python3 -m pytest -Wall -v" |