mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-04-19 13:52:07 +00:00
* Ensure that `sccache` version is 0.10.0 or higher * Rename `ACTIONS_CACHE_URL` to `ACTIONS_RESULTS_URL`
328 lines
14 KiB
YAML
328 lines
14 KiB
YAML
name: Build and push docker image to internal registry
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
hardware:
|
|
type: string
|
|
description: Hardware
|
|
# options:
|
|
# - cuda
|
|
# - cuda-trtllm
|
|
# - rocm
|
|
# - intel
|
|
required: true
|
|
release-tests:
|
|
description: "Run release integration tests"
|
|
required: true
|
|
default: false
|
|
type: boolean
|
|
|
|
jobs:
|
|
build-and-push:
|
|
outputs:
|
|
docker_image: ${{ steps.final.outputs.docker_image }}
|
|
docker_volume: ${{ steps.final.outputs.docker_volume }}
|
|
docker_devices: ${{ steps.final.outputs.docker_devices }}
|
|
runs_on: ${{ steps.final.outputs.runs_on }}
|
|
label_extension: ${{ steps.final.outputs.label_extension }}
|
|
extra_pytest: ${{ steps.final.outputs.extra_pytest }}
|
|
concurrency:
|
|
group: ${{ github.workflow }}-build-and-push-image-${{ inputs.hardware }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
runs-on:
|
|
group: aws-highmemory-64-plus-priv
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
id-token: write
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Inject slug/short variables
|
|
uses: rlespinasse/github-slug-action@v4.4.1
|
|
- name: Inject required variables for sccache to interact with Github Actions Cache
|
|
uses: actions/github-script@v7
|
|
with:
|
|
script: |
|
|
core.exportVariable('ACTIONS_RESULTS_URL', process.env.ACTIONS_RESULTS_URL || '');
|
|
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
|
|
|
|
- name: Extract TensorRT-LLM version
|
|
run: |
|
|
echo "TENSORRT_LLM_VERSION=$(grep -oP '([a-z,0-9]{40})' $GITHUB_WORKSPACE/backends/trtllm/cmake/trtllm.cmake)" >> $GITHUB_ENV
|
|
echo "TensorRT-LLM version: ${{ env.TENSORRT_LLM_VERSION }}"
|
|
- name: Construct hardware variables
|
|
shell: bash
|
|
run: |
|
|
case ${{ inputs.hardware }} in
|
|
cuda)
|
|
export dockerfile="Dockerfile"
|
|
export label_extension=""
|
|
export docker_volume="/mnt/cache"
|
|
export docker_devices=""
|
|
export runs_on="aws-g6-12xl-plus-priv-cache"
|
|
export platform=""
|
|
export extra_pytest=""
|
|
export target=""
|
|
;;
|
|
cuda-trtllm)
|
|
export dockerfile="Dockerfile_trtllm"
|
|
export label_extension="-trtllm"
|
|
export docker_volume="/mnt/cache"
|
|
export docker_devices=""
|
|
export runs_on="ubuntu-latest"
|
|
export platform=""
|
|
export extra_pytest=""
|
|
if [[ "${GITHUB_REF}" == refs/tags/* ]]; then
|
|
export build_type="release";
|
|
export target="";
|
|
else
|
|
export build_type="dev";
|
|
export target="ci-runtime";
|
|
fi
|
|
;;
|
|
rocm)
|
|
export dockerfile="Dockerfile_amd"
|
|
export label_extension="-rocm"
|
|
export docker_devices="/dev/kfd,/dev/dri"
|
|
export docker_volume="/mnt"
|
|
# This runner was deactivated.
|
|
export runs_on="ubuntu-latest"
|
|
export platform=""
|
|
export extra_pytest="-k test_flash_gemma_gptq_load"
|
|
export target=""
|
|
;;
|
|
intel-xpu)
|
|
export dockerfile="Dockerfile_intel"
|
|
export label_extension="-intel-xpu"
|
|
export docker_devices=""
|
|
export docker_volume="/mnt/cache"
|
|
export runs_on="ubuntu-latest"
|
|
export platform="xpu"
|
|
export extra_pytest=""
|
|
export target=""
|
|
;;
|
|
intel-cpu)
|
|
export dockerfile="Dockerfile_intel"
|
|
export label_extension="-intel-cpu"
|
|
export docker_devices="none"
|
|
export docker_volume="/mnt/cache"
|
|
# export runs_on="ubuntu-latest"
|
|
export runs_on="aws-highmemory-32-plus-priv"
|
|
export platform="cpu"
|
|
export extra_pytest="-k test_flash_gemma_simple"
|
|
export target=""
|
|
;;
|
|
neuron)
|
|
export dockerfile="Dockerfile.neuron"
|
|
export label_extension="-neuron"
|
|
export docker_devices="/dev/neuron0"
|
|
export docker_volume="/mnt/cache"
|
|
export runs_on="aws-inf2-8xlarge"
|
|
export platform="cpu"
|
|
export extra_pytest="--neuron"
|
|
export target=""
|
|
;;
|
|
gaudi)
|
|
export dockerfile="Dockerfile_gaudi"
|
|
export label_extension="-gaudi"
|
|
export docker_volume="/mnt/cache"
|
|
export docker_devices=""
|
|
export runs_on="ubuntu-latest"
|
|
export platform=""
|
|
export extra_pytest=""
|
|
export target=""
|
|
esac
|
|
echo $dockerfile
|
|
echo "Dockerfile=${dockerfile}"
|
|
echo $label_extension
|
|
echo $docker_devices
|
|
echo $runs_on
|
|
echo $platform
|
|
echo "DOCKERFILE=${dockerfile}" >> $GITHUB_ENV
|
|
echo "LABEL_EXTENSION=${label_extension}" >> $GITHUB_ENV
|
|
echo "PLATFORM=${platform}" >> $GITHUB_ENV
|
|
echo "DOCKER_VOLUME=${docker_volume}" >> $GITHUB_ENV
|
|
echo "DOCKER_DEVICES=${docker_devices}" >> $GITHUB_ENV
|
|
echo "RUNS_ON=${runs_on}" >> $GITHUB_ENV
|
|
echo "EXTRA_PYTEST=${extra_pytest}" >> $GITHUB_ENV
|
|
echo REGISTRY_MIRROR=$REGISTRY_MIRROR >> $GITHUB_ENV
|
|
echo "TARGET=${target}" >> $GITHUB_ENV
|
|
echo "BUILD_TYPE=${build_type}" >> $GITHUB_ENV
|
|
- name: Initialize Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
install: true
|
|
buildkitd-config: /tmp/buildkitd.toml
|
|
- name: Login to internal Container Registry
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
|
registry: registry.internal.huggingface.tech
|
|
- name: Login to GitHub Container Registry
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Login to Docker Hub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: docker.io
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
- name: Login to Azure Container Registry
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.AZURE_DOCKER_USERNAME }}
|
|
password: ${{ secrets.AZURE_DOCKER_PASSWORD }}
|
|
registry: db4c2190dd824d1f950f5d1555fbadf0.azurecr.io
|
|
# If pull request
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
if: ${{ github.event_name == 'pull_request' }}
|
|
id: meta-pr
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: |
|
|
docker.io/huggingface/text-generation-inference-ci
|
|
tags: |
|
|
type=raw,value=sha-${{ env.GITHUB_SHA_SHORT }}${{ env.LABEL_EXTENSION }}
|
|
# If main, release or tag
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
if: ${{ github.event_name != 'pull_request' }}
|
|
id: meta
|
|
uses: docker/metadata-action@v4.3.0
|
|
with:
|
|
flavor: |
|
|
latest=false
|
|
images: |
|
|
registry.internal.huggingface.tech/api-inference/community/text-generation-inference
|
|
ghcr.io/huggingface/text-generation-inference
|
|
db4c2190dd824d1f950f5d1555fbadf0.azurecr.io/text-generation-inference
|
|
tags: |
|
|
type=semver,pattern={{version}}${{ env.LABEL_EXTENSION }}
|
|
type=semver,pattern={{major}}.{{minor}}${{ env.LABEL_EXTENSION }}
|
|
type=raw,value=latest${{ env.LABEL_EXTENSION }},enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
|
|
type=raw,value=sha-${{ env.GITHUB_SHA_SHORT }}${{ env.LABEL_EXTENSION }}
|
|
- name: Build and push Docker image
|
|
id: build-and-push
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: .
|
|
file: ${{ env.DOCKERFILE }}
|
|
push: true
|
|
platforms: 'linux/amd64'
|
|
build-args: |
|
|
GIT_SHA=${{ env.GITHUB_SHA }}
|
|
DOCKER_LABEL=sha-${{ env.GITHUB_SHA_SHORT }}${{ env.LABEL_EXTENSION }}
|
|
PLATFORM=${{ env.PLATFORM }}
|
|
build_type=${{ env.BUILD_TYPE }}
|
|
sccache_gha_enabled=on
|
|
actions_results_url=${{ env.ACTIONS_RESULTS_URL }}
|
|
actions_runtime_token=${{ env.ACTIONS_RUNTIME_TOKEN }}
|
|
target: ${{ env.TARGET }}
|
|
tags: ${{ steps.meta.outputs.tags || steps.meta-pr.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels || steps.meta-pr.outputs.labels }}
|
|
cache-from: type=s3,region=us-east-1,bucket=ci-docker-buildx-cache,name=text-generation-inference-cache${{ env.LABEL_EXTENSION }},mode=max,access_key_id=${{ secrets.S3_CI_DOCKER_BUILDX_CACHE_ACCESS_KEY_ID }},secret_access_key=${{ secrets.S3_CI_DOCKER_BUILDX_CACHE_SECRET_ACCESS_KEY }},mode=min
|
|
cache-to: type=s3,region=us-east-1,bucket=ci-docker-buildx-cache,name=text-generation-inference-cache${{ env.LABEL_EXTENSION }},mode=min,access_key_id=${{ secrets.S3_CI_DOCKER_BUILDX_CACHE_ACCESS_KEY_ID }},secret_access_key=${{ secrets.S3_CI_DOCKER_BUILDX_CACHE_SECRET_ACCESS_KEY }},mode=min
|
|
- name: Final
|
|
id: final
|
|
run: |
|
|
|
|
if [ "${{ github.event_name }}" = "pull_request" ]; then
|
|
echo "docker_image=docker.io/huggingface/text-generation-inference-ci:sha-${{ env.GITHUB_SHA_SHORT}}${{ env.LABEL_EXTENSION }}" >> "$GITHUB_OUTPUT"
|
|
else
|
|
echo "docker_image=ghcr.io/huggingface/text-generation-inference:sha-${{ env.GITHUB_SHA_SHORT}}${{ env.LABEL_EXTENSION }}" >> "$GITHUB_OUTPUT"
|
|
fi
|
|
echo "docker_devices=${{ env.DOCKER_DEVICES }}" >> "$GITHUB_OUTPUT"
|
|
echo "docker_volume=${{ env.DOCKER_VOLUME }}" >> "$GITHUB_OUTPUT"
|
|
echo "runs_on=${{ env.RUNS_ON }}" >> "$GITHUB_OUTPUT"
|
|
echo "label_extension=${{ env.LABEL_EXTENSION }}" >> "$GITHUB_OUTPUT"
|
|
echo "extra_pytest=${{ env.EXTRA_PYTEST }}" >> "$GITHUB_OUTPUT"
|
|
precompile_neuron_models:
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.job }}-${{ needs.build-and-push.outputs.label_extension }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
needs: build-and-push
|
|
if: needs.build-and-push.outputs.label_extension == '-neuron'
|
|
runs-on:
|
|
group: ${{ needs.build-and-push.outputs.runs_on }}
|
|
env:
|
|
PYTEST_FLAGS: ${{ (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' || inputs.release-tests == true) && '--release' || '--release' }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Inject slug/short variables
|
|
uses: rlespinasse/github-slug-action@v4.4.1
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.11"
|
|
- name: Install
|
|
run: |
|
|
make install-integration-tests
|
|
- name: Export neuron models
|
|
run: |
|
|
export DOCKER_IMAGE=${{ needs.build-and-push.outputs.docker_image }}
|
|
echo $DOCKER_IMAGE
|
|
docker pull $DOCKER_IMAGE
|
|
export HF_TOKEN=${{ secrets.HF_TOKEN_NEURON }}
|
|
python integration-tests/fixtures/neuron/export_models.py
|
|
integration_tests:
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.job }}-${{ needs.build-and-push.outputs.label_extension }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
needs: [precompile_neuron_models, build-and-push]
|
|
if: ${{ always() && !contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled') && needs.build-and-push.outputs.runs_on != 'ubuntu-latest' }}
|
|
runs-on:
|
|
group: ${{ needs.build-and-push.outputs.runs_on }}
|
|
env:
|
|
PYTEST_FLAGS: ${{ (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' || inputs.release-tests == true) && '--release' || '--release' }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Inject slug/short variables
|
|
uses: rlespinasse/github-slug-action@v4.4.1
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.11"
|
|
- name: Install
|
|
run: |
|
|
make install-integration-tests
|
|
- name: Run tests
|
|
run: |
|
|
export DOCKER_VOLUME=${{ needs.build-and-push.outputs.docker_volume }}
|
|
export DOCKER_IMAGE=${{ needs.build-and-push.outputs.docker_image }}
|
|
export DOCKER_DEVICES=${{ needs.build-and-push.outputs.docker_devices }}
|
|
export EXTRA_PYTEST="${{ needs.build-and-push.outputs.extra_pytest }}"
|
|
export HF_TOKEN=${{ secrets.HF_TOKEN }}
|
|
echo $DOCKER_IMAGE
|
|
docker pull $DOCKER_IMAGE
|
|
pytest -s -vv integration-tests ${PYTEST_FLAGS} ${EXTRA_PYTEST}
|
|
|
|
backend_trtllm_cxx_tests:
|
|
needs: build-and-push
|
|
if: needs.build-and-push.outputs.label_extension == '-trtllm'
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.job }}-trtllm-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
runs-on:
|
|
group: aws-g6-12xl-plus-priv-cache
|
|
container:
|
|
image: ${{ needs.build-and-push.outputs.docker_image }}
|
|
credentials:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
options: --gpus all --shm-size=8g
|
|
|
|
steps:
|
|
- name: Run C++/CUDA tests
|
|
if: ${{ env.LABEL_EXTENSION == 'ci-runtime' }}
|
|
run: /usr/local/tgi/bin/tgi_trtllm_backend_tests
|