Skip to content
Merged
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
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,10 @@ jobs:
AWS_DEFAULT_REGION: ap-southeast-2
run: |
if [[ "${{ matrix.endtoend }}" == "true" ]]; then
# ppa:ondrej/php appears to be already added, though ppa:ondrej/apache2 is not
# Neither ppa:ondrej/php nor ppa:ondrej/apache2 are added by default.
# ppa:ondrej/php must be added explicitly - while shivammathur/setup-php installs the PHP CLI,
# it does not leave the PPA registered in apt sources, which is needed for libapache2-mod-php below.
sudo add-apt-repository -y ppa:ondrej/php
sudo add-apt-repository -y ppa:ondrej/apache2

# Run apt update allowing for a change in the "Label" field which has happened at least once after the
Expand Down
Loading