Skip to content

GPTQ CI improvements #177

GPTQ CI improvements

GPTQ CI improvements #177

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"
workflow_dispatch:
inputs:
release-tests:
description: "Run release integration tests"
required: true
default: "false"
type: boolean
jobs:
build:
strategy:
# super important if you want to see all results, even if one fails
# fail-fast is true by default
fail-fast: false
matrix:
hardware: ["cuda", "rocm", "intel"]
uses: ./.github/workflows/build.yaml # calls the one above ^

Check failure on line 40 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: 40, Col: 11): Error from called workflow huggingface/text-generation-inference/.github/workflows/build.yaml@2633f3de266c9d1291ff62709a6b946966d74f7f (Line: 17, Col: 18): Unexpected value 'false'
with:
hardware: ${{ matrix.hardware }}
release-tests: ${{ github.event.inputs.release-tests }}
secrets: inherit