File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
.github/actions/asdf-install-tooling Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments