Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
xuning
/
sherpaonnx
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Fangjun Kuang
2025-02-08 15:26:53 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2025-02-08 15:26:53 +0800
Commit
ee7e6228fd7d4258004db3fa7500eaf4e4251d34
ee7e6228
1 parent
69f489f0
Fix building wheels for linux aarch64. (#1821)
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
5 行增加
和
12 行删除
.github/workflows/build-wheels-aarch64-cuda.yaml
.github/workflows/build-wheels-aarch64.yaml
.github/workflows/build-wheels-aarch64-cuda.yaml
查看文件 @
ee7e622
...
...
@@ -20,18 +20,13 @@ jobs:
strategy
:
fail-fast
:
false
matrix
:
os
:
[
ubuntu-2
0.04
]
os
:
[
ubuntu-2
2.04-arm
]
python-version
:
[
"
cp37"
,
"
cp38"
,
"
cp39"
,
"
cp310"
,
"
cp311"
,
"
cp312"
,
"
cp313"
]
manylinux
:
[
manylinux2014
]
#, manylinux_2_28]
steps
:
-
uses
:
actions/checkout@v4
-
name
:
Set up QEMU
uses
:
docker/setup-qemu-action@v2
with
:
platforms
:
all
# see https://cibuildwheel.readthedocs.io/en/stable/changelog/
# for a list of versions
-
name
:
Build wheels
...
...
.github/workflows/build-wheels-aarch64.yaml
查看文件 @
ee7e622
...
...
@@ -20,18 +20,15 @@ jobs:
strategy
:
fail-fast
:
false
matrix
:
os
:
[
ubuntu-20.04
]
# see https://github.com/pypa/cibuildwheel/issues/2257
# we don't use qemu from now on
os
:
[
ubuntu-22.04-arm
]
python-version
:
[
"
cp37"
,
"
cp38"
,
"
cp39"
,
"
cp310"
,
"
cp311"
,
"
cp312"
,
"
cp313"
]
manylinux
:
[
manylinux2014
]
#, manylinux_2_28]
steps
:
-
uses
:
actions/checkout@v4
-
name
:
Set up QEMU
uses
:
docker/setup-qemu-action@v2
with
:
platforms
:
all
# see https://cibuildwheel.readthedocs.io/en/stable/changelog/
# for a list of versions
-
name
:
Build wheels
...
...
@@ -50,6 +47,7 @@ jobs:
CIBW_SKIP
:
"
cp27-*
cp35-*
cp36-*
*-win32
pp*
*-musllinux*
*-manylinux_i686"
CIBW_BUILD_VERBOSITY
:
3
CIBW_ARCHS_LINUX
:
aarch64
# https://quay.io/repository/pypa/manylinux2014_aarch64?tab=tags
CIBW_MANYLINUX_AARCH64_IMAGE
:
quay.io/pypa/${{ matrix.manylinux }}_aarch64
# From onnxruntime >= 1.17.0, it drops support for CentOS 7.0 and it supports only manylinux_2_28.
# manylinux_2_24 is no longer supported
...
...
请
注册
或
登录
后发表评论