From bc161c9478abbc2be4d3603fcf8d2d116c50bb5c Mon Sep 17 00:00:00 2001 From: Chris McGee Date: Tue, 12 Aug 2025 10:24:11 -0400 Subject: [PATCH] Add Debian 12 (Bookworm) support --- .github/workflows/pull_request.yml | 4 ++-- README.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index d785884..753d801 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -9,10 +9,10 @@ jobs: name: Test uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main with: - linux_os_versions: '["noble", "jammy", "focal", "rhel-ubi9"]' + linux_os_versions: '["noble", "jammy", "focal", "rhel-ubi9", "bookworm"]' linux_swift_versions: '["6.1", "nightly-main"]' linux_pre_build_command: | - if command -v apt-get >/dev/null 2>&1 ; then # noble, jammy, focal + if command -v apt-get >/dev/null 2>&1 ; then # noble, jammy, focal, or bookworm apt-get update -y # Test dependencies diff --git a/README.md b/README.md index f1f311d..29acbe3 100644 --- a/README.md +++ b/README.md @@ -230,6 +230,7 @@ The table below describes the current level of support that Subprocess has for v | **tvOS** | Not supported | | **visionOS** | Not supported | | **Ubuntu 22.04** | Supported | +| **Debian 12** | Supported | | **Windows** | Supported |

(back to top)