Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Ubuntu] add php 8.2 #6745

Merged
merged 1 commit into from
Dec 12, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion images/linux/scripts/installers/php.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ for version in $php_versions; do
apt-get install -y --no-install-recommends php$version-recode
fi

if [[ $version != "8.0" && $version != "8.1" ]]; then
if [[ $version != "8.0" && $version != "8.1" && $version != "8.2" ]]; then
apt-get install -y --no-install-recommends php$version-xmlrpc php$version-json
fi
done
Expand Down
3 changes: 2 additions & 1 deletion images/linux/toolsets/toolset-1804.json
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,8 @@
"7.3",
"7.4",
"8.0",
"8.1"
"8.1",
"8.2"
]
},
"selenium": {
Expand Down
3 changes: 2 additions & 1 deletion images/linux/toolsets/toolset-2004.json
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,8 @@
"versions": [
"7.4",
"8.0",
"8.1"
"8.1",
"8.2"
]
},
"rubygems": [
Expand Down