Skip to content

Commit

Permalink
ci: Reinstate Ubuntu Focal support
Browse files Browse the repository at this point in the history
Reinstate support for Ubuntu Focal, which was previously removed in
commit 229ebbd.

Refs #206
  • Loading branch information
apyrgio committed Nov 1, 2022
1 parent 5a0453d commit de07a12
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,18 @@ jobs:
- run: *copy-image
- run: *build-deb

build-ubuntu-focal:
docker:
- image: ubuntu:20.04
resource_class: medium+
steps:
- checkout
- run: *provide-podman
- run: *install-dependencies-deb
- restore_cache: *restore-cache
- run: *copy-image
- run: *build-deb

build-debian-bookworm:
docker:
- image: debian:bookworm
Expand Down Expand Up @@ -301,6 +313,12 @@ jobs:
PACKAGE_TYPE: "deb"
PACKAGECLOUD_DISTRO: "ubuntu/jammy"
<<: *deploy-packagecloud
- run:
name: Deploy ubuntu/focal
environment:
PACKAGE_TYPE: "deb"
PACKAGECLOUD_DISTRO: "ubuntu/focal"
<<: *deploy-packagecloud

workflows:
version: 2
Expand All @@ -315,6 +333,9 @@ workflows:
- build-ubuntu-jammy:
requires:
- build-container-image
- build-ubuntu-focal:
requires:
- build-container-image
- build-debian-bullseye:
requires:
- build-container-image
Expand Down

0 comments on commit de07a12

Please sign in to comment.