mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-06-19 15:52:08 +00:00
42 lines
776 B
YAML
42 lines
776 B
YAML
name: Build TensorRT-LLM
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
tags:
|
|
- 'v*'
|
|
pull_request:
|
|
paths:
|
|
- "backends/**"
|
|
- "server/**"
|
|
- "proto/**"
|
|
- "router/**"
|
|
- "launcher/**"
|
|
- "Cargo.lock"
|
|
- "rust-toolchain.toml"
|
|
branches:
|
|
- "main"
|
|
|
|
jobs:
|
|
call-setup-aws-s3-cache:
|
|
uses: ./.github/workflows/s3-cache.yaml # TODO: Change @s3-cache to @main when merged
|
|
with:
|
|
runner-group: aws-highmemory-32-plus-priv
|
|
secrets: inherit
|
|
|
|
build:
|
|
runs-on:
|
|
group: aws-highmemory-32-plus-priv
|
|
needs: call-setup-aws-s3-cache
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
|
|
- name: "Install sccache"
|
|
run: cargo install sscache
|
|
|
|
|
|
|
|
|