feat: unify dockerfiles (#10705)

Co-authored-by: Yineng Zhang <me@zhyncs.com>
This commit is contained in:
ishandhanani
2025-09-23 14:23:48 +08:00
committed by GitHub
parent 9241f4fd20
commit 1c82d9db28
5 changed files with 216 additions and 62 deletions

View File

@@ -44,7 +44,7 @@ jobs:
working-directory: sgl-kernel
run: |
pip install twine
python3 -m twine upload dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}
python3 -m twine upload --skip-existing dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}
build-cu124:
if: github.repository == 'sgl-project/sglang'
@@ -227,6 +227,12 @@ jobs:
chmod +x ./build.sh
./build.sh "${{ matrix.python-version }}" "${{ matrix.cuda-version }}" aarch64
- name: Upload to PyPI
working-directory: sgl-kernel
run: |
pip install twine
python3 -m twine upload --skip-existing dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}
- name: Upload artifacts
uses: actions/upload-artifact@v4
with: