From 6fec53b8296a2f1c735c1c9677293a5957f0671f Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Wed, 25 Jan 2023 10:48:06 +0200 Subject: [PATCH] HACK: Temporarily skip Debian Bookworm builds Temporarily skip building Debian Bookworm packages, due to an upstream deprecation of `python-all` package [1]. The proper fix is in the `main` branch, but we don't need to cherry-pick this in this hotfix branch. [1]: https://github.com/freedomofpress/dangerzone/issues/292#issuecomment-1349967888 --- .circleci/config.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a6e5c7358..c209aba52 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -182,16 +182,16 @@ jobs: - run: *copy-image - run: *build-deb - build-debian-bookworm: - docker: - - image: debian:bookworm - resource_class: medium+ - steps: - - run: *install-dependencies-deb - - checkout - - restore_cache: *restore-cache - - run: *copy-image - - run: *build-deb + #build-debian-bookworm: + # docker: + # - image: debian:bookworm + # resource_class: medium+ + # steps: + # - run: *install-dependencies-deb + # - checkout + # - restore_cache: *restore-cache + # - run: *copy-image + # - run: *build-deb build-debian-bullseye: docker: @@ -359,9 +359,9 @@ workflows: - build-debian-bullseye: requires: - build-container-image - - build-debian-bookworm: - requires: - - build-container-image + #- build-debian-bookworm: + # requires: + # - build-container-image - build-fedora-37: requires: - build-container-image