-
Notifications
You must be signed in to change notification settings - Fork 42
49 lines (42 loc) · 1.15 KB
/
build-wheels-full-release.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
46
47
48
49
name: Build Wheels for New Release
on:
workflow_dispatch:
inputs:
version:
description: 'Version tag of llama-cpp-python to build: v0.2.11'
default: 'v0.2.11'
required: true
type: string
permissions:
contents: write
jobs:
run_main:
name: Build ${{ inputs.version }} CUDA Wheels
uses: ./.github/workflows/build-wheels.yml
with:
version: ${{ inputs.version }}
cpu: '0'
run_ooba:
name: Build ${{ inputs.version }} CUDA Wheels for Text Generation Webui
needs: run_main
uses: ./.github/workflows/build-wheels-oobabooga.yml
with:
version: ${{ inputs.version }}
run_cpu:
name: Build CPU-only Wheels
needs: run_ooba
uses: ./.github/workflows/build-wheels-cpu.yml
with:
version: ${{ inputs.version }}
run_macos:
name: Build MacOS Metal Wheels
needs: run_cpu
uses: ./.github/workflows/build-wheels-macos.yml
with:
version: ${{ inputs.version }}
run_rocm:
name: Build ROCm Wheels
needs: run_macos
uses: ./.github/workflows/build-wheels-rocm-full.yml
with:
version: ${{ inputs.version }}