Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ RUN apt-get update \
ca-certificates \
git \
libpq-dev \
zlib1g-dev \
postgresql-client \
python3 \
Comment on lines 34 to 38
gdb \
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading