From c36fe4259114ffbacedd7cbd777643c76a3f9d84 Mon Sep 17 00:00:00 2001 From: Alexandre Alves Date: Mon, 9 Dec 2024 13:45:30 +0000 Subject: [PATCH] add missing checks for extensions that have now been migrated to vue3 (#12731) * add missing checks for extensions that have now been migrated to vue3 * add -W flag to ignore workspace root check --- shell/scripts/test-plugins-build.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/shell/scripts/test-plugins-build.sh b/shell/scripts/test-plugins-build.sh index 4351140dcae..11d16cbc4dd 100755 --- a/shell/scripts/test-plugins-build.sh +++ b/shell/scripts/test-plugins-build.sh @@ -200,7 +200,7 @@ function clone_repo_test_extension_build() { echo -e "\nInstalling newly built shell version\n" # installing new version of shell - yarn add @rancher/shell@${SHELL_VERSION} + yarn add @rancher/shell@${SHELL_VERSION} -W # test build-pkg FORCE_COLOR=true yarn build-pkg $PKG_NAME | cat @@ -224,6 +224,7 @@ function clone_repo_test_extension_build() { clone_repo_test_extension_build "rancher" "kubewarden-ui" "kubewarden" clone_repo_test_extension_build "rancher" "elemental-ui" "elemental" clone_repo_test_extension_build "neuvector" "manager-ext" "neuvector-ui-ext" -# clone_repo_test_extension_build "rancher" "capi-ui-extension" "capi" +clone_repo_test_extension_build "rancher" "capi-ui-extension" "capi" +clone_repo_test_extension_build "StackVista" "rancher-extension-stackstate" "observability" echo "All done"