Skip to content

Commit

Permalink
Explicitly install runtime library packages in install-php action
Browse files Browse the repository at this point in the history
Previously the shared libraries would not be available when PHP was cached,
because the step that installs the dev packages containing the headers (which
would implicitly install the library package) was skipped.
  • Loading branch information
TimWolla authored May 13, 2024
1 parent 330fdf7 commit 1de6c42
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/actions/install-php/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ runs:
shell: bash
run: sudo apt-get update

- name: Install runtime libraries
shell: bash
run: |
sudo apt-get install -y \
libmcrypt4 \
libmemcached11 \
librabbitmq4 \
librdkafka1
- name: Determine PHP version
id: determine-php-version
shell: bash
Expand Down

0 comments on commit 1de6c42

Please sign in to comment.