Skip to content

Commit 69732ce

Browse files
authored
fix: align install on infra (#372)
1 parent d6ce512 commit 69732ce

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/actions/asdf-install-tooling/action.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,17 @@ runs:
8585
key: ${{ steps.cache-key.outputs.cache_key }}
8686

8787
# Some ASDF packages require Python to be compiled with lzma support
88-
# including e.g. azure cli
88+
# including e.g. azure cli, keep it aligned with https://github.com/camunda/keycloak/blob/main/.github/workflows/build-images.yml#L299-L308
8989
- name: Install library preqrequisites
9090
if: ${{ inputs.cache == 'false' || steps.cache-asdf-check.outputs.cache-hit != 'true' }}
9191
shell: bash
9292
run: |
9393
sudo apt-get update
94-
sudo apt-get install -y liblzma-dev libbz2-dev libreadline-dev
94+
95+
sudo apt-get install -y build-essential git libexpat1-dev libssl-dev zlib1g-dev \
96+
libncurses5-dev libbz2-dev liblzma-dev \
97+
libsqlite3-dev libffi-dev tcl-dev linux-headers-generic libgdbm-dev \
98+
libreadline-dev tk tk-dev
9599
96100
- name: Install asdf when no cache hit
97101
id: install

0 commit comments

Comments
 (0)