diff --git a/.github/workflows/ubuntu-latest-icc.yml b/.github/workflows/ubuntu-latest-icc.yml index 5f981a1..9a3c678 100644 --- a/.github/workflows/ubuntu-latest-icc.yml +++ b/.github/workflows/ubuntu-latest-icc.yml @@ -46,7 +46,7 @@ jobs: run: script/ci_install_icc.sh $LINUX_HPCKIT_URL $LINUX_CPP_COMPONENTS_WEB - name: Install dependencies - run: sudo script/ci_install_deps.sh + run: script/ci_install_deps.sh - name: CMake run: echo "/host_usr_local/bin" >> $GITHUB_PATH diff --git a/script/ci_install_icc.sh b/script/ci_install_icc.sh index 4428dd9..d719f6f 100755 --- a/script/ci_install_icc.sh +++ b/script/ci_install_icc.sh @@ -13,10 +13,10 @@ chmod +x webimage.sh rm -rf webimage.sh WEBIMAGE_NAME=$(ls -1 webimage_extracted/) if [ -z "$COMPONENTS" ]; then - sudo webimage_extracted/"$WEBIMAGE_NAME"/bootstrapper -s --action install --eula=accept --continue-with-optional-error=yes --log-dir=. + webimage_extracted/"$WEBIMAGE_NAME"/bootstrapper -s --action install --eula=accept --continue-with-optional-error=yes --log-dir=. installer_exit_code=$? else - sudo webimage_extracted/"$WEBIMAGE_NAME"/bootstrapper -s --action install --components="$COMPONENTS" --eula=accept --continue-with-optional-error=yes --log-dir=. + webimage_extracted/"$WEBIMAGE_NAME"/bootstrapper -s --action install --components="$COMPONENTS" --eula=accept --continue-with-optional-error=yes --log-dir=. installer_exit_code=$? fi rm -rf webimage_extracted