We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f07e17 commit b4de04fCopy full SHA for b4de04f
ci/scripts/github/conda_libs.sh
@@ -44,8 +44,11 @@ rapids-logger "Listing LFS-known files"
44
git lfs ls-files
45
rapids-logger "Building Morpheus Libraries"
46
47
-# Run nvidia-smi to check the test env
48
-/usr/bin/nvidia-smi
+# If we have access to a GPU run nvidia-smi to check the test env
+if [ -f /usr/bin/nvidia-smi ]; then
49
+ /usr/bin/nvidia-smi
50
+fi
51
+
52
53
# Run the conda build, and upload to conda forge if requested
54
export MORPHEUS_PYTHON_BUILD_STUBS=OFF
0 commit comments