forked from jllllll/llama-cpp-python-cuBLAS-wheels
-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (39 loc) · 1.08 KB
/
build-wheels-batch-basic.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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 }}