Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
lanluo-nvidia committed Jun 17, 2024
1 parent da36c13 commit 59f5cdc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/scripts/build-linux-release-artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ python -m auditwheel repair \
--plat manylinux_2_34_x86_64 \
/opt/torch-tensorrt-builds/torch_tensorrt-*-${PY_BUILD_CODE}-linux_x86_64.whl

if [[ ! -d dist ]]; then
mkdir dist
fi
cp wheelhouse/torch_tensorrt*x86_64.whl dist/

CUDA_VERSION=$(python -c "import versions; versions.cuda_version()")
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/linux-release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,12 @@ jobs:
with:
repository: ${{ inputs.repository }}
script: exec_script
- name: Upload release artifacts to GitHub
continue-on-error: true
uses: actions/upload-artifact@v3
with:
name: release_${{ env.ARTIFACT_NAME }}
path: ${{ inputs.repository }}/dist/
# - name: Surface failing tests
# if: always()
# uses: pmeier/[email protected]
Expand Down

0 comments on commit 59f5cdc

Please sign in to comment.