[Test] Add e2e tests for Qwen3-TTS speech endpoint #3745
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Wheel | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'examples/**' | |
| - '.github/**' | |
| - '.buildkite/**' | |
| - '**.md' | |
| - '*.yml' | |
| - '.gitignore' | |
| - '.gitattributes' | |
| - 'LICENSE' | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'examples/**' | |
| - '.github/**' | |
| - '.buildkite/**' | |
| - '*.yml' | |
| - '**.md' | |
| - '.gitignore' | |
| - '.gitattributes' | |
| - 'LICENSE' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| run: | | |
| pip install uv | |
| - name: Build Wheel | |
| env: | |
| UV_SYSTEM_PYTHON: 1 | |
| run: | | |
| bash scripts/build_wheel.sh --python python | |
| - name: Upload Wheel Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: vllm-omni-wheel-py${{ matrix.python-version }} | |
| path: dist/*.whl |