From 771a3005946be5f1d2a30020eb1e11993d1dbc74 Mon Sep 17 00:00:00 2001 From: Samruddhi Khandale Date: Thu, 1 Sep 2022 09:51:09 -0700 Subject: Oryx - Fix bug when dynamically installing dotnet in universal image (#125) * fix oryx * copy /images * bimp version --- test/oryx/test.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test/oryx/test.sh') diff --git a/test/oryx/test.sh b/test/oryx/test.sh index 49a2327..c5d6067 100755 --- a/test/oryx/test.sh +++ b/test/oryx/test.sh @@ -9,8 +9,18 @@ check "Oryx version" oryx --version check "ORYX_SDK_STORAGE_BASE_URL" echo $ORYX_SDK_STORAGE_BASE_URL check "ENABLE_DYNAMIC_INSTALL" echo $ENABLE_DYNAMIC_INSTALL +# Install platforms with oryx build tool +check "oryx-install-dotnet-2.1" oryx prep --skip-detection --platforms-and-versions dotnet=2.1.30 +check "dotnet-2-installed-by-oryx" ls /opt/dotnet/ | grep 2.1 + check "oryx-install-nodejs-12.22.11" oryx prep --skip-detection --platforms-and-versions nodejs=12.22.11 check "nodejs-12.22.11-installed-by-oryx" ls /opt/nodejs/ | grep 12.22.11 +check "oryx-install-php-7.3.25" oryx prep --skip-detection --platforms-and-versions php=7.3.25 +check "php-7.3.25-installed-by-oryx" ls /opt/php/ | grep 7.3.25 + +check "oryx-install-java-12.0.2" oryx prep --skip-detection --platforms-and-versions java=12.0.2 +check "java-12.0.2-installed-by-oryx" ls /opt/java/ | grep 12.0.2 + # Report result reportResults \ No newline at end of file -- cgit v1.2.3