diff --git a/.github/workflows/ci_precompiled.yaml b/.github/workflows/ci_precompiled.yaml index e9391427..4e7adab1 100644 --- a/.github/workflows/ci_precompiled.yaml +++ b/.github/workflows/ci_precompiled.yaml @@ -86,7 +86,6 @@ jobs: TEST_CASE: "./tests/cases/nvidia-driver.sh" OPERATOR_OPTIONS: "--set driver.usePrecompiled=true --set driver.repository=${{ env.PRIVATE_REGISTRY }}/nvidia" run: | - echo "shiva1" rc=0 for driver_version in ${DRIVER_VERSIONS}; do echo "Running e2e for DRIVER_VERSION=$driver_version" diff --git a/tests/ci-run-e2e.sh b/tests/ci-run-e2e.sh index efaea8d8..7ff11352 100755 --- a/tests/ci-run-e2e.sh +++ b/tests/ci-run-e2e.sh @@ -7,9 +7,9 @@ if [[ $# -ne 3 ]]; then exit 1 fi -export TEST_CASE=${1} -export TARGET_DRIVER_VERSION=${2} -export OPERATOR_OPTIONS=${3} +export TEST_CASE="${1}" +export TARGET_DRIVER_VERSION="${2}" +export OPERATOR_OPTIONS="${3}" TEST_DIR="$(pwd)/tests" diff --git a/tests/scripts/install-operator.sh b/tests/scripts/install-operator.sh index 18ad00c2..010e3fec 100755 --- a/tests/scripts/install-operator.sh +++ b/tests/scripts/install-operator.sh @@ -21,8 +21,7 @@ helm repo add nvidia ${HELM_NVIDIA_REPO} && helm repo update kubectl create namespace "${TEST_NAMESPACE}" # Run the helm install command -echo "OPERATOR_OPTIONS: $OPERATOR_OPTIONS" ${HELM} install gpu-operator nvidia/gpu-operator \ -n "${TEST_NAMESPACE}" \ - ${OPERATOR_OPTIONS} \ + "${OPERATOR_OPTIONS}" \ --wait