Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6 to 7.
- vLLM version: v0.18.0
- vLLM main:
8b6325758c
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
90 lines
2.3 KiB
YAML
90 lines
2.3 KiB
YAML
name: 'Image build lint'
|
|
on:
|
|
schedule:
|
|
# Runs at 00:00 UTC+8 every day
|
|
- cron: '0 20 * * *'
|
|
workflow_dispatch:
|
|
inputs:
|
|
vllm_hash:
|
|
description: 'vLLM base hash'
|
|
default: main
|
|
required: true
|
|
type: string
|
|
push:
|
|
paths:
|
|
- '.github/workflows/dockerfiles/Dockerfile.lint'
|
|
- 'requirements-lint.txt'
|
|
- 'requirements-dev.txt'
|
|
- 'requirements.txt'
|
|
|
|
# only cancel in-progress runs of the same workflow
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: vllm-ascend lint image build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
|
|
- name: Print
|
|
run: |
|
|
lscpu
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v6
|
|
with:
|
|
images: |
|
|
quay.io/ascend-ci/vllm-ascend
|
|
tags: lint
|
|
flavor:
|
|
latest=false
|
|
|
|
- name: Build - Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Build - Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v4
|
|
|
|
- name: Publish - Login to Quay Container Registry
|
|
if: ${{ github.repository_owner == 'vllm-project' }}
|
|
uses: docker/login-action@v4
|
|
with:
|
|
registry: quay.io
|
|
username: ${{ vars.QUAY_CI_USERNAME }}
|
|
password: ${{ secrets.QUAY_CI_PASSWORD }}
|
|
|
|
- name: Build and push
|
|
if: ${{ github.event_name != 'workflow_dispatch' }}
|
|
uses: docker/build-push-action@v7
|
|
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
|
|
|
|
- name: Build and push
|
|
if: ${{ github.event_name == 'workflow_dispatch' }}
|
|
uses: docker/build-push-action@v7
|
|
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 }}
|