From b398694374ef8c89314af2b42032ff7d6b747324 Mon Sep 17 00:00:00 2001 From: Haven Maple Date: Fri, 24 Jul 2026 00:51:44 +0800 Subject: [PATCH] ci: run zlib DEFLATE codec tests --- .devcontainer/Dockerfile | 1 + .github/workflows/ci.yml | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index b8f4dd17..d1f65628 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -33,6 +33,7 @@ RUN apt-get update \ ca-certificates \ git \ libpq-dev \ + zlib1g-dev \ postgresql-client \ python3 \ gdb \ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1fa9b31f..d83af36f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -306,6 +306,14 @@ jobs: name: Run full suite against gfx build (executes audio section [62]) run: cd tests && bash run_all_tests.sh + - if: needs.scope.outputs.code == 'true' + name: Build zlib variant + run: make zlib + + - if: needs.scope.outputs.code == 'true' + name: Run full suite against zlib build (executes DEFLATE section [124]) + run: cd tests && bash run_all_tests.sh + - if: needs.scope.outputs.code == 'true' name: Compile-check LSP run: make lsp