Batch Build Basic Wheels #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Batch Build Basic Wheels | |
on: | |
workflow_dispatch: | |
inputs: | |
versions: | |
description: 'Comma-seperated version tags of llama-cpp-python to build' | |
default: 'v0.2.69,' | |
required: true | |
type: string | |
permissions: | |
contents: write | |
jobs: | |
define_matrix: | |
name: Define Workflow Matrix | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
defaults: | |
run: | |
shell: pwsh | |
env: | |
PCKGVERS: ${{ inputs.versions }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Define Job Output | |
id: set-matrix | |
run: | | |
$x = ConvertTo-Json @($env:PCKGVERS.Split(',').Trim()) -Compress | |
Write-Output ('matrix=' + $x) >> $env:GITHUB_OUTPUT | |
run_workflows: | |
name: Build ${{ matrix.version }} Basic CUDA Wheels | |
needs: define_matrix | |
strategy: | |
max-parallel: 1 | |
matrix: | |
version: ${{ fromJSON(needs.define_matrix.outputs.matrix) }} | |
uses: ./.github/workflows/build-wheels-basic.yml | |
with: | |
version: ${{ matrix.version }} |