Skip to content

Enabling CI for AMD with new runner.. #11

Enabling CI for AMD with new runner..

Enabling CI for AMD with new runner.. #11

Workflow file for this run

name: CI build
on:
push:
branches:
- 'main'
tags:
- 'v*'
pull_request:
paths:
- ".github/workflows/build.yaml"
- "integration-tests/**"
- "server/**"
- "proto/**"
- "router/**"
- "launcher/**"
- "Cargo.lock"
- "rust-toolchain.toml"
- "Dockerfile"
- "Dockerfile_amd"
- "Dockerfile_intel"
branches:
- 'main'
jobs:
build:
strategy:
# super important if you want to see all results, even if one fails
# fail-fast is true by default
fail-fast: true
matrix:
hardware: ["cuda", "rocm", "intel"]
uses: ./.github/workflows/build.yaml # calls the one above ^
with:
hardware: ${{ matrix.hardware }}
secrets: inherit
integration_tests:
needs: build
uses: ./.github/workflows/integration_tests.yaml # calls the one above ^

Check failure on line 39 in .github/workflows/ci_build.yaml

View workflow run for this annotation

GitHub Actions / CI build

Invalid workflow file

The workflow is not valid. In .github/workflows/ci_build.yaml (Line: 39, Col: 11): Error from called workflow huggingface/text-generation-inference/.github/workflows/integration_tests.yaml@96a29d8ae33e50620249f2a27522ea95be5730fe (Line: 18, Col: 3): The workflow must contain at least one job with no dependencies.
with:
docker_image: ${{ needs.build.outputs.docker_image }}
docker_devices: ${{ needs.build.outputs.docker_devices }}
runs_on: ${{ needs.build.outputs.runs_on }}
secrets: inherit