mirror of
https://github.com/vllm-project/vllm.git
synced 2026-08-06 05:48:08 +00:00
10 lines
353 B
Bash
Executable File
10 lines
353 B
Bash
Executable File
#!/bin/bash
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
#
|
|
# Append a build artifact line to the Buildkite annotation.
|
|
# Usage: annotate-build-artifact.sh <label> <value>
|
|
set -e
|
|
echo "- **${1}**: \`${2}\`" | \
|
|
buildkite-agent annotate --append --style 'info' --context 'release-artifacts'
|