Skip to content

Commit

Permalink
Upload wheel to artifact storage
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarkall committed Jul 23, 2024
1 parent 877676c commit a4af89b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/wheels-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,9 @@ jobs:
# Use a shell that loads the rc file so that we get the compiler settings
shell: bash -leo pipefail {0}
- name: Upload additional artifacts
id: upload-wheel
if: "!cancelled()"
run: rapids-upload-artifacts-dir cuda${RAPIDS_CUDA_VERSION%%.*}_$(arch)_py${RAPIDS_PY_VERSION//.}
uses: actions/upload-artifact@v4
with:
name ${{ env.package_name }}
path: ${{ env.package_path }}/${{ env.package_name }}
4 changes: 2 additions & 2 deletions ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ rapids-logger "Build wheel"
mkdir -p ./dist
python -m pip wheel . --wheel-dir=./dist -vvv --disable-pip-version-check --no-deps

rapids-logger "Upload Wheel"
RAPIDS_PY_WHEEL_NAME="numba_cuda" rapids-upload-wheels-to-s3 ./dist
echo "package_name=$(basename numba_cuda-*.whl)" >> $GITHUB_ENV
echo "package_path=`pwd`" >> $GITHUB_ENV

0 comments on commit a4af89b

Please sign in to comment.