Fix: ci issue (#17580)

### Summary

ci issue
This commit is contained in:
Jack
2026-07-30 19:13:51 +08:00
committed by GitHub
parent e25ba0b85a
commit d87d9a2881
3 changed files with 8 additions and 7 deletions

View File

@@ -903,7 +903,9 @@ jobs:
run: |
set -euo pipefail
PKGS=$(go list ./... 2>/dev/null \
| grep -v '/internal/tokenizer$' || true)
| grep -v '/internal/storage$' \
| grep -v '/internal/tokenizer$' \
| grep -v '/internal/handler$' || true)
if [ -z "$PKGS" ]; then
./build.sh --test
else