Skip to content

Commit

Permalink
9.Pre-compiled end-to-end gpu driver validation
Browse files Browse the repository at this point in the history
Signed-off-by: shiva kumar <[email protected]>
  • Loading branch information
shivakunv committed Aug 30, 2024
1 parent 7aca4ac commit 2f2b8cc
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/ci-precompiled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
# - oracle
outputs:
KERNEL_VERSION: ${{ steps.set_kernel_version.outputs.KERNEL_VERSION }}
# KERNEL_FLAVOR: ${{ steps.KERNEL_FLAVOR.outputs.KERNEL_FLAVOR }}
should_test_continue: ${{ steps.set_kernel_version.outputs.should_test_continue }}

steps:
- name: Check out code
Expand Down Expand Up @@ -83,25 +83,15 @@ jobs:
echo "The last successful e2e-tests-nvidiadriver was on the same tag ($KERNEL_VERSION). Skipping e2e-tests-nvidiadriver."
exit 0
else
# echo "::set-output name=KERNEL_VERSION::$KERNEL_VERSION"
# echo "::set-output name=KERNEL_FLAVOR::$KERNEL_FLAVOR"
echo "KERNEL_VERSION=$KERNEL_VERSION" >> $GITHUB_OUTPUT
echo "should_test_continue=${{ matrix.flavor }}" >> $GITHUB_OUTPUT
echo "Proceeding with $KERNEL_VERSION e2e-tests-nvidiadriver."
fi
e2e-tests-nvidiadriver:
runs-on: ubuntu-latest
needs: e2e-driver-version-compare
# strategy:
# matrix:
# flavor:
# - aws
# # - azure
# # - generic
# # - nvidia
# # - oracle

if: ${{ needs.e2e-driver-version-compare.outputs.KERNEL_VERSION != '' }}
if: ${{ needs.e2e-driver-version-compare.outputs.should_test_continue != '' && needs.e2e-driver-version-compare.outputs.KERNEL_VERSION != '' }}
steps:
- name: Check out code
uses: actions/checkout@v4
Expand Down

0 comments on commit 2f2b8cc

Please sign in to comment.