Drop Ubuntu 22.10 (Kinetic Kudu) support

Drop support for Ubuntu 22.10 (Kinetic Kudu), because it's past its EOL
date [1].

Closes #485

[1]: https://endoflife.date/ubuntu
This commit is contained in:
Alex Pyrgiotis 2023-07-26 13:48:17 +03:00
parent f66375bd44
commit c541227dd3
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA
5 changed files with 1 additions and 54 deletions

View file

@ -181,33 +181,6 @@ jobs:
./dev_scripts/env.py --distro ubuntu --version 23.04 run -g --dev \ ./dev_scripts/env.py --distro ubuntu --version 23.04 run -g --dev \
bash -c 'cd dangerzone; poetry run make test' bash -c 'cd dangerzone; poetry run make test'
ci-ubuntu-kinetic:
machine:
image: ubuntu-2004:202111-01
steps:
- checkout
- run: *install-podman
- run:
name: Prepare cache directory
command: |
sudo mkdir -p /caches
sudo chown -R $USER:$USER /caches
- run: *calculate-cache-key
- restore_cache: *restore-cache
- run: *copy-image
- run:
name: Prepare Dangerzone environment
command: |
./dev_scripts/env.py --distro ubuntu --version 22.10 build-dev
- run:
name: Run CI tests
command: |
./dev_scripts/env.py --distro ubuntu --version 22.10 run -g --dev \
bash -c 'cd dangerzone; poetry run make test'
ci-ubuntu-jammy: ci-ubuntu-jammy:
machine: machine:
image: ubuntu-2004:202111-01 image: ubuntu-2004:202111-01
@ -442,18 +415,6 @@ jobs:
- run: *copy-image - run: *copy-image
- run: *build-deb - run: *build-deb
build-ubuntu-kinetic:
docker:
- image: ubuntu:22.10
resource_class: medium+
steps:
- run: *install-dependencies-deb
- checkout
- run: *calculate-cache-key
- restore_cache: *restore-cache
- run: *copy-image
- run: *build-deb
build-ubuntu-jammy: build-ubuntu-jammy:
docker: docker:
- image: ubuntu:22.04 - image: ubuntu:22.04
@ -552,9 +513,6 @@ workflows:
- ci-ubuntu-lunar: - ci-ubuntu-lunar:
requires: requires:
- build-container-image - build-container-image
- ci-ubuntu-kinetic:
requires:
- build-container-image
- ci-ubuntu-jammy: - ci-ubuntu-jammy:
requires: requires:
- build-container-image - build-container-image
@ -579,9 +537,6 @@ workflows:
- build-ubuntu-lunar: - build-ubuntu-lunar:
requires: requires:
- build-container-image - build-container-image
- build-ubuntu-kinetic:
requires:
- build-container-image
- build-ubuntu-jammy: - build-ubuntu-jammy:
requires: requires:
- build-container-image - build-container-image

View file

@ -89,9 +89,6 @@ jobs:
- target: ubuntu-22.04 - target: ubuntu-22.04
distro: ubuntu distro: ubuntu
version: "22.04" version: "22.04"
- target: ubuntu-22.10
distro: ubuntu
version: "22.10"
- target: ubuntu-23.04 - target: ubuntu-23.04
distro: ubuntu distro: ubuntu
version: "23.04" version: "23.04"

View file

@ -19,6 +19,7 @@ since 0.4.1, and this project adheres to [Semantic Versioning](https://semver.or
### Removed ### Removed
- Platform support: Drop Fedora 36, since it's end-of-life ([issue #420](https://github.com/freedomofpress/dangerzone/issues/420)) - Platform support: Drop Fedora 36, since it's end-of-life ([issue #420](https://github.com/freedomofpress/dangerzone/issues/420))
- Platform support: Drop Ubuntu 22.10 (Kinetic Kudu), since it's end-of-life ([issue #485](https://github.com/freedomofpress/dangerzone/issues/485))
### Fixed ### Fixed

View file

@ -1,7 +1,6 @@
Dangerzone is available for: Dangerzone is available for:
- Ubuntu 23.04 (lunar) - Ubuntu 23.04 (lunar)
- Ubuntu 22.10 (kinetic)
- Ubuntu 22.04 (jammy) - Ubuntu 22.04 (jammy)
- Ubuntu 20.04 (focal) - Ubuntu 20.04 (focal)
- Debian 13 (trixie) - Debian 13 (trixie)

View file

@ -812,11 +812,6 @@ class QAUbuntu2204(QADebianBased):
VERSION = "22.04" VERSION = "22.04"
class QAUbuntu2210(QADebianBased):
DISTRO = "ubuntu"
VERSION = "22.10"
class QAUbuntu2304(QADebianBased): class QAUbuntu2304(QADebianBased):
DISTRO = "ubuntu" DISTRO = "ubuntu"
VERSION = "23.04" VERSION = "23.04"