Unverified Commit 11421a3f authored by Yineng Zhang's avatar Yineng Zhang Committed by GitHub
Browse files

fix: update pr-test-sgl-kernel (#5399)

parent 6c41fcf0
...@@ -44,12 +44,6 @@ jobs: ...@@ -44,12 +44,6 @@ jobs:
cuda-version: '12.8' cuda-version: '12.8'
name: Build Wheel (CUDA ${{ matrix.cuda-version }}) name: Build Wheel (CUDA ${{ matrix.cuda-version }})
steps: steps:
- name: Skip unnecessary builds on push to main
if: github.event_name == 'push' && (matrix.cuda-version == '11.8' || matrix.cuda-version == '12.8')
run: |
echo "Skipping CUDA ${{ matrix.cuda-version }} build on push to main"
exit 0
- name: Cleanup - name: Cleanup
run: | run: |
sudo rm -rf $GITHUB_WORKSPACE/* || true sudo rm -rf $GITHUB_WORKSPACE/* || true
...@@ -64,6 +58,7 @@ jobs: ...@@ -64,6 +58,7 @@ jobs:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Build wheel for Python ${{ matrix.python-version }} and CUDA ${{ matrix.cuda-version }} - name: Build wheel for Python ${{ matrix.python-version }} and CUDA ${{ matrix.cuda-version }}
if: github.event_name != 'push' || (matrix.cuda-version != '11.8' && matrix.cuda-version != '12.8')
run: | run: |
cd sgl-kernel cd sgl-kernel
chmod +x ./build.sh chmod +x ./build.sh
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment