Skip to content

Commit

Permalink
Try to fix path for packages
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarkall committed Jul 24, 2024
1 parent 3d0c7bb commit 616aa2b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions ci/test_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ conda activate test
set -u

package=(numba-cuda-*.tar.bz2)
package=$package/$package
echo "Package is $package"
pwd
ls -lR
Expand Down
5 changes: 4 additions & 1 deletion ci/test_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ python -m pip install \
rapids-logger "Install wheel"
pwd
ls -lR
python -m pip install $(echo ./numba_cuda*.whl)
package=$(echo ./numba_cuda*.whl)
package=$package/$package
echo "Package is $package"
python -m pip install $package

rapids-logger "Check GPU usage"
nvidia-smi
Expand Down

0 comments on commit 616aa2b

Please sign in to comment.