Added model name label to metrics and added an optional argument --served-model-name #2780
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI build | |
on: | |
push: | |
branches: | |
- 'main' | |
tags: | |
- 'v*' | |
pull_request: | |
paths: | |
- ".github/workflows/build.yaml" | |
- "integration-tests/**" | |
- "backends/**" | |
- "server/**" | |
- "proto/**" | |
- "router/**" | |
- "launcher/**" | |
- "Cargo.lock" | |
- "rust-toolchain.toml" | |
- "Dockerfile" | |
- "Dockerfile_amd" | |
- "Dockerfile_intel" | |
branches: | |
- "main" | |
workflow_dispatch: | |
inputs: | |
release-tests: | |
description: "Run release integration tests" | |
required: true | |
default: false | |
type: boolean | |
jobs: | |
build: | |
strategy: | |
# super important if you want to see all results, even if one fails | |
# fail-fast is true by default | |
fail-fast: false | |
matrix: | |
hardware: ["cuda", "cuda-trtllm", "rocm", "intel-xpu", "intel-cpu", "neuron"] | |
uses: ./.github/workflows/build.yaml # calls the one above ^ | |
permissions: | |
contents: write | |
packages: write | |
id-token: write | |
with: | |
hardware: ${{ matrix.hardware }} | |
# https://github.com/actions/runner/issues/2206 | |
release-tests: ${{ inputs.release-tests == true }} | |
secrets: inherit |