You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 30, 2023. It is now read-only.
update all feature scripts to support jammy (& update regression testing parameters) (#1464)
* test against jammy
* update regression
* conditionally install libssl3.0 or libssl1.1 depending on distro support (#1458)
* bump ruby regression test to 3.1.2
* swap libssl condition check and friendlier error
* even friendlier
* update regression
* add ssh group if it does not exist
* install tigervnc-tools to get vncpasswd on new ubuntu versions, if needed (#1428)
* test against a more meaningful oryx image
* update powershell script dropping dependency missing in ubuntu 22.04
# NOTE: This will only guard against installation of the dotnet versions we propose via 'features'.
359
+
# The user can attempt to install any other version at their own risk.
360
+
if [[ "${DOTNET_VERSION}"="3.1" ]] || [[ "${DOTNET_VERSION}"="5.0" ]];then
361
+
if [[ !"${DOTNET_VERSION_CODENAMES_REQUIRE_OLDER_LIBSSL_1}"=*"${VERSION_CODENAME}"* ]];then
362
+
err "Dotnet ${DOTNET_VERSION} is not supported on Ubuntu ${VERSION_CODENAME} due to a change in the 'libssl' dependency across distributions.\n Please upgrade your version of dotnet, or downgrade your OS version."
363
+
exit 1
364
+
fi
365
+
fi
366
+
346
367
# Determine if the user wants to download .NET Runtime only, or .NET SDK & Runtime
0 commit comments