[CI] Add workflow support for lint image build (#6489)

Support specify commit hash with lint image build workflow

- vLLM version: v0.15.0
- vLLM main: https://github.com/vllm-project/vllm/commit/v0.15.0

Signed-off-by: wangxiyuan <wangxiyuan1007@gmail.com>
This commit is contained in:
wangxiyuan
2026-02-07 09:32:01 +08:00
committed by GitHub
parent 4fa7cf6f50
commit d266fd7b47

View File

@@ -4,9 +4,15 @@ on:
# Runs at 00:00 UTC+8 every day # Runs at 00:00 UTC+8 every day
- cron: '0 20 * * *' - cron: '0 20 * * *'
workflow_dispatch: workflow_dispatch:
inputs:
vllm_hash:
description: 'vLLM base hash'
default: main
required: true
type: string
push: push:
paths: paths:
- 'Dockerfile.lint' - '.github/workflows/dockerfiles/Dockerfile.lint'
- 'requirements-lint.txt' - 'requirements-lint.txt'
- 'requirements-dev.txt' - 'requirements-dev.txt'
- 'requirements.txt' - 'requirements.txt'
@@ -55,6 +61,7 @@ jobs:
password: ${{ secrets.QUAY_CI_PASSWORD }} password: ${{ secrets.QUAY_CI_PASSWORD }}
- name: Build and push - name: Build and push
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:
# For now, we only build amd64 lint image # For now, we only build amd64 lint image
@@ -65,3 +72,18 @@ jobs:
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
provenance: false provenance: false
- name: Build and push
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: docker/build-push-action@v6
with:
# For now, we only build amd64 lint image
platforms: 'linux/amd64'
context: .
file: .github/workflows/dockerfiles/Dockerfile.lint
push: true
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }}
provenance: false
build-args: |
VLLM_HASH=${{ inputs.vllm_hash }}