Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.

Build vLLM wheel

Build vLLM wheel #21

Workflow file for this run

name: Build vLLM wheel
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.inputs.ref }}
repository: ${{ github.event.inputs.repository }}
- name: Resolve commit hash
id: commit-hash
run: |
echo "COMMIT_HASH=$(git rev-parse HEAD)" | tee $GITHUB_OUTPUT
- name: Resolve SOURCE_DATE_EPOCH
id: source-date-epoch
run: |
echo "SOURCE_DATE_EPOCH=$(git log -1 --format=%ct)" | tee $GITHUB_OUTPUT
- name: Apply patches
run: |
set -e
# List of patches
patches=(
"https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/patches/vllm/0000-enable-support-for-pascal-gpus.patch"
"https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/patches/vllm/1000-set-torch-cuda-arch-list.patch"
"https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/patches/vllm/9000-add-vllm-command-that-launches-api-server.patch"
)
# Apply patches
for patch in ${patches[@]}; do
echo "Applying patch $patch"
curl "$patch" | patch -p1
done
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: cp${{ matrix.python_version }}-manylinux_x86_64
CIBW_MANYLINUX_PYPY_X86_64_IMAGE: ghcr.io/sasha0552/manylinux2014_x86_64-cuda
CIBW_MANYLINUX_X86_64_IMAGE: ghcr.io/sasha0552/manylinux2014_x86_64-cuda
CIBW_REPAIR_WHEEL_COMMAND: ~
SOURCE_DATE_EPOCH: ${{ steps.source-date-epoch.outputs.SOURCE_DATE_EPOCH }}
- name: Create release
uses: softprops/action-gh-release@v2
with:
body: https://github.com/vllm-project/vllm/commit/${{ steps.commit-hash.outputs.COMMIT_HASH }}
draft: true
files: wheelhouse/*.whl
tag_name: ${{ github.event.inputs.tag_name }}
strategy:
matrix:
python_version: [38, 39, 310, 311]
on:
workflow_dispatch:
inputs:
repository:
default: vllm-project/vllm
description: Source repository
required: true
type: string
ref:
default: main
description: Source ref
required: true
type: string
tag_name:
description: Target tag
required: true
type: string