Skip to content

Batch Build Basic Wheels #2

Batch Build Basic Wheels

Batch Build Basic Wheels #2

name: Batch Build Basic Wheels
on:
workflow_dispatch:
inputs:
versions:
description: 'Comma-seperated version tags of llama-cpp-python to build'
default: 'v0.1.77,v0.1.76'
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@v3
- 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 }}