Rename for everyone.

This commit is contained in:
Nicolas Patry 2024-06-07 15:03:01 +02:00
parent f29371e587
commit 3a8e9c221e
7 changed files with 21 additions and 2 deletions

View File

@ -0,0 +1,19 @@
name: Build PR Documentation
on:
pull_request:
paths:
- "docs/source/**"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
uses: huggingface/doc-builder/.github/workflows/build_pr_documentation.yaml@main
with:
commit_sha: ${{ github.event.pull_request.head.sha }}
pr_number: ${{ github.event.number }}
package: text-generation-inference
additional_args: --not_python_module

View File

@ -30,13 +30,13 @@ jobs:
fail-fast: true
matrix:
hardware: ["cuda", "rocm", "intel"]
uses: ./.github/workflows/build.yml # calls the one above ^
uses: ./.github/workflows/build.yaml # calls the one above ^
with:
hardware: ${{ matrix.hardware }}
secrets: inherit
integration_tests:
needs: build-matrix
uses: ./.github/workflows/integration_tests.yml # calls the one above ^
uses: ./.github/workflows/integration_tests.yaml # calls the one above ^
with:
docker_image: ${{ steps.build.outputs.docker_image }}
docker_devices: ${{ steps.build.outputs.docker_devices }}