Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions .github/workflows/image_openeuler.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'image'
name: 'image / openEuler'
# This is a docker build check and publish job:
# 1. PR Triggered docker image build check
# - is for image build check
Expand Down Expand Up @@ -33,9 +33,13 @@ on:

jobs:
build:
name: vllm-ascend openEuler image
runs-on: ubuntu-latest

name: vllm-ascend image build
runs-on: >-
${{
github.event_name == 'push' && github.repository_owner == 'vllm-project' &&
'ubuntu-latest' ||
'ubuntu-24.04-arm'
}}
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -87,7 +91,12 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
platforms: >-
${{
github.event_name == 'push' && github.repository_owner == 'vllm-project' &&
'linux/amd64,linux/arm64' ||
'linux/arm64'
}}
# use the current repo path as the build context, ensure .git is contained
context: .
# only trigger when tag, branch/main push
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/image_ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'image'
name: 'image / Ubuntu'
# This is a docker build check and publish job:
# 1. PR Triggered docker image build check
# - is for image build check
Expand Down Expand Up @@ -33,7 +33,7 @@ on:
jobs:

build:
name: vllm-ascend Ubuntu image
name: vllm-ascend image build
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -87,7 +87,12 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
platforms: >-
${{
github.event_name == 'push' && github.repository_owner == 'vllm-project' &&
'linux/amd64,linux/arm64' ||
'linux/amd64'
}}
# use the current repo path as the build context, ensure .git is contained
context: .
# only trigger when tag, branch/main push
Expand Down
Loading