From 9efc28081b663e1220e2788ea7573d37045d2a44 Mon Sep 17 00:00:00 2001 From: shiva kumar Date: Sat, 24 Aug 2024 12:44:01 +0530 Subject: [PATCH] 1.Pre-compiled end-to-end gpu driver validation Signed-off-by: shiva kumar --- .github/workflows/ci.yaml | 2 +- .github/workflows/ci_precompiled.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1826e388..e97e7f3e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -67,7 +67,7 @@ jobs: for driver_version in ${DRIVER_VERSIONS}; do echo "Running e2e for DRIVER_VERSION=$driver_version" status=0 - ./tests/ci-run-e2e.sh ${TEST_CASE} ${COMMIT_SHORT_SHA}-${driver_version} ${OPERATOR_OPTIONS} || status=$? + ./tests/ci-run-e2e.sh "${TEST_CASE}" "${COMMIT_SHORT_SHA}-${driver_version}" "${OPERATOR_OPTIONS}" || status=$? if [ $status -ne 0 ]; then echo "e2e validation failed for driver version $driver_version with status $status" rc=$status diff --git a/.github/workflows/ci_precompiled.yaml b/.github/workflows/ci_precompiled.yaml index f8ecc6bf..2fc5294d 100644 --- a/.github/workflows/ci_precompiled.yaml +++ b/.github/workflows/ci_precompiled.yaml @@ -90,7 +90,7 @@ jobs: for driver_version in ${DRIVER_VERSIONS}; do echo "Running e2e for DRIVER_VERSION=$driver_version" status=0 - ./tests/ci-run-e2e.sh ${TEST_CASE_KERNEL_UPGRADE} ${driver_version} ${OPERATOR_OPTIONS} || status=$? + ./tests/ci-run-e2e.sh "${TEST_CASE_KERNEL_UPGRADE}" "${driver_version} "${OPERATOR_OPTIONS}" || status=$? if [ $status -ne 0 ]; then echo "Kernel upgrade failed" rc=$status @@ -98,7 +98,7 @@ jobs: ./tests/scripts/remote_retry.sh DRIVER_BRANCH=$(echo "${driver_version}" | cut -d '.' -f 1) DRIVER_VERSION="${DRIVER_BRANCH}" - ./tests/ci-run-e2e.sh ${TEST_CASE} ${DRIVER_VERSION} ${OPERATOR_OPTIONS} || status=$? + ./tests/ci-run-e2e.sh "${TEST_CASE}" "${DRIVER_VERSION}" "${OPERATOR_OPTIONS}" || status=$? if [ $status -ne 0 ]; then echo "e2e validation failed for driver version $DRIVER_VERSION with status $status" rc=$status