From 4ea6a11c83391bcb35004544c53401b490a9280c Mon Sep 17 00:00:00 2001 From: Xiaoyu Zhang <35585791+BBuf@users.noreply.github.com> Date: Mon, 5 Jan 2026 13:46:40 +0800 Subject: [PATCH] [CI] Fail wheel build when sgl-kernel artifacts are missing (#16450) --- .github/workflows/pr-test.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index f6b70e5c3..feff45db0 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -210,11 +210,17 @@ jobs: env: USE_CCACHE: 1 + - name: Verify wheel artifacts + run: | + ls -alh sgl-kernel/dist + ls -alh sgl-kernel/dist/*.whl + - name: Upload artifacts uses: actions/upload-artifact@v4 with: name: wheel-python${{ matrix.python-version }}-cuda${{ matrix.cuda-version }} path: sgl-kernel/dist/* + if-no-files-found: error sgl-kernel-build-wheels-arm: needs: [check-changes, call-gate] @@ -252,11 +258,17 @@ jobs: env: USE_CCACHE: 1 + - name: Verify wheel artifacts + run: | + ls -alh sgl-kernel/dist + ls -alh sgl-kernel/dist/*.whl + - name: Upload artifacts uses: actions/upload-artifact@v4 with: name: wheel-python${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}-aarch64 path: sgl-kernel/dist/* + if-no-files-found: error sgl-kernel-unit-test: needs: [check-changes, call-gate, sgl-kernel-build-wheels]