Skip to content

.github/workflows/vllm-tensorizer.yml #126

.github/workflows/vllm-tensorizer.yml

.github/workflows/vllm-tensorizer.yml #126

Workflow file for this run

on:
push:
paths:
- "vllm-tensorizer/**"
- ".github/workflows/vllm-tensorizer.yml"
- ".github/workflows/build.yml"
jobs:
get-config:
name: Get vllm-tensorizer config
uses: ./.github/workflows/read-configuration.yml
with:
path: ./.github/configurations/vllm-tensorizer.yml
build:
uses: ./.github/workflows/build.yml
needs: get-config
strategy:
matrix: ${{ fromJSON(needs.get-config.outputs.config) }}
secrets: inherit
with:
image-name: vllm-tensorizer
folder: vllm-tensorizer
tag-suffix: ${{ matrix.vllm-commit }}
build-args: |
VLLM_COMMIT_HASH=${{ matrix.vllm-commit }}
BASE_IMAGE=${{ matrix.base-image }}