diff options
author | Denys Fedoryshchenko <denys.f@collabora.com> | 2024-07-07 18:15:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-07 18:15:33 +0300 |
commit | 6bb95a7da97f05bcb9e47261afe677593ab4d11c (patch) | |
tree | 99523a3c22b40dfd207a8d2c46e18191a74bbe5c | |
parent | 27753b7429fc0f151019e90256ddea95c2638ecd (diff) | |
parent | 2a0aec6c8fc868ab141ae1371147556e7373ccf8 (diff) | |
download | accel-ppp-6bb95a7da97f05bcb9e47261afe677593ab4d11c.tar.gz accel-ppp-6bb95a7da97f05bcb9e47261afe677593ab4d11c.zip |
Merge pull request #164 from svlobanov/ci-remove-debian10
ci: remove debian10 support
-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" |