### What this PR does / why we need it?
This pull request refactor nightly image build and simplify the logic of
multi workflows.
1. Nightly image build become the prerequisite when the test are
triggered by `schedule` or `workflow_dispatch`
2. Simplify the pull request select case logic
3. Next step: Implement replaceable nightly tests. Specifically, if
nightly tests are manually triggered, they can accept any optional
docker image to meet the needs of different commits(Which means the
image is customizable).
### Does this PR introduce _any_ user-facing change?
### How was this patch tested?
- vLLM version: v0.17.0
- vLLM main:
4034c3d32e
---------
Signed-off-by: wangli <wangli858794774@gmail.com>
72 lines
2.5 KiB
YAML
72 lines
2.5 KiB
YAML
#
|
|
# Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# This file is a part of the vllm-ascend project.
|
|
#
|
|
|
|
name: 'Nightly image build'
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
target:
|
|
required: true
|
|
type: string
|
|
description: "Build target: 'a2' or 'a3'"
|
|
secrets:
|
|
HW_USERNAME:
|
|
required: false
|
|
HW_TOKEN:
|
|
required: false
|
|
GITEE_TOKEN:
|
|
required: false
|
|
|
|
jobs:
|
|
build:
|
|
name: Build nightly-${{ inputs.target }} image
|
|
runs-on: ubuntu-22.04-arm
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Login to Huawei Cloud SWR
|
|
id: login-swr
|
|
if: ${{ env.HW_USERNAME != '' && env.HW_TOKEN != '' }}
|
|
env:
|
|
HW_USERNAME: ${{ secrets.HW_USERNAME }}
|
|
HW_TOKEN: ${{ secrets.HW_TOKEN }}
|
|
run: |
|
|
echo "$HW_TOKEN" | docker login -u "$HW_USERNAME" --password-stdin swr.cn-southwest-2.myhuaweicloud.com
|
|
|
|
- name: Build nightly-${{ inputs.target }} image
|
|
env:
|
|
GITEE_USERNAME: ${{ vars.GITEE_USERNAME }}
|
|
GITEE_TOKEN: ${{ secrets.GITEE_TOKEN }}
|
|
run: |
|
|
IMAGE="swr.cn-southwest-2.myhuaweicloud.com/base_image/ascend-ci/vllm-ascend:nightly-${{ inputs.target }}"
|
|
docker build \
|
|
--network host \
|
|
--platform linux/arm64 \
|
|
-f .github/workflows/dockerfiles/Dockerfile.nightly.${{ inputs.target }} \
|
|
--build-arg CANN_VERSION="8.5.1" \
|
|
--build-arg UBUNTU_VERSION="22.04" \
|
|
--build-arg PYTHON_VERSION="3.11" \
|
|
--build-arg GITEE_USERNAME="${GITEE_USERNAME}" \
|
|
--build-arg GITEE_TOKEN="${GITEE_TOKEN}" \
|
|
-t "$IMAGE" .
|
|
|
|
- name: Push image to SWR
|
|
if: ${{ github.repository_owner == 'vllm-project' && steps.login-swr.conclusion == 'success' }}
|
|
run: |
|
|
docker push swr.cn-southwest-2.myhuaweicloud.com/base_image/ascend-ci/vllm-ascend:nightly-${{ inputs.target }}
|