FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
llama-cpp-python/.github/workflows/build-wheels-metal.yaml at main · cxz/llama-cpp-python · GitHub
cxz
/
llama-cpp-python
Public
forked from
abetlen/llama-cpp-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
llama-cpp-python
/
.github
/
workflows
/
build-wheels-metal.yaml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
66 lines (55 loc) · 1.61 KB
Breadcrumbs
llama-cpp-python
/
.github
/
workflows
/
build-wheels-metal.yaml
Copy path
File metadata and controls
66 lines (55 loc) · 1.61 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name
:
Build Wheels (Metal)
on
:
workflow_dispatch
permissions
:
contents
:
write
jobs
:
build_wheels
:
name
:
Build wheels on ${{ matrix.os }}
runs-on
:
${{ matrix.os }}
strategy
:
matrix
:
os
:
[macos-12, macos-13, macos-14]
steps
:
-
uses
:
actions/checkout@v4
with
:
submodules
:
"
recursive
"
#
Used to host cibuildwheel
-
uses
:
actions/setup-python@v5
with
:
python-version
:
"
3.12
"
cache
:
'
pip
'
-
name
:
Install dependencies
run
:
|
python -m pip install --upgrade pip
python -m pip install -e .[all]
-
name
:
Build wheels
uses
:
pypa/cibuildwheel@v2.19.2
env
:
#
disable repair
CIBW_REPAIR_WHEEL_COMMAND
:
"
"
CIBW_ARCHS
:
"
arm64
"
CIBW_ENVIRONMENT
:
CMAKE_ARGS="-DCMAKE_OSX_ARCHITECTURES=arm64 -DCMAKE_APPLE_SILICON_PROCESSOR=arm64 -DGGML_METAL=on"
CIBW_BUILD
:
"
cp39-* cp310-* cp311-* cp312-*
"
with
:
package-dir
:
.
output-dir
:
wheelhouse2
-
uses
:
actions/upload-artifact@v4
with
:
name
:
wheels-mac_${{ matrix.os }}
path
:
./wheelhouse2/*.whl
release
:
name
:
Release
needs
:
[build_wheels]
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/download-artifact@v4
with
:
merge-multiple
:
true
path
:
dist2
-
uses
:
softprops/action-gh-release@v2
with
:
files
:
dist2/*
#
set release name to <tag>-metal
tag_name
:
${{ github.ref_name }}-metal
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
Back
|
FazBrowse Home
|
New Git URL