mirror of
https://github.com/openai/harmony.git
synced 2025-08-23 10:17:08 -04:00
ring fixes
This commit is contained in:
parent
a938605e0f
commit
2d077f3745
1 changed files with 6 additions and 0 deletions
6
.github/workflows/CI.yml
vendored
6
.github/workflows/CI.yml
vendored
|
@ -43,6 +43,9 @@ jobs:
|
||||||
python-version: 3.x
|
python-version: 3.x
|
||||||
- name: Build wheels
|
- name: Build wheels
|
||||||
uses: PyO3/maturin-action@v1
|
uses: PyO3/maturin-action@v1
|
||||||
|
env:
|
||||||
|
# Ensure ring's ARM assembly sees an explicit architecture on aarch64 (glibc)
|
||||||
|
CFLAGS_aarch64_unknown_linux_gnu: -D__ARM_ARCH=8
|
||||||
with:
|
with:
|
||||||
target: ${{ matrix.platform.target }}
|
target: ${{ matrix.platform.target }}
|
||||||
args: -F python-binding --release --out dist --find-interpreter
|
args: -F python-binding --release --out dist --find-interpreter
|
||||||
|
@ -74,6 +77,9 @@ jobs:
|
||||||
python-version: 3.x
|
python-version: 3.x
|
||||||
- name: Build wheels
|
- name: Build wheels
|
||||||
uses: PyO3/maturin-action@v1
|
uses: PyO3/maturin-action@v1
|
||||||
|
env:
|
||||||
|
# Ensure ring's ARM assembly sees an explicit architecture on aarch64 (musl)
|
||||||
|
CFLAGS_aarch64_unknown_linux_musl: -D__ARM_ARCH=8
|
||||||
with:
|
with:
|
||||||
target: ${{ matrix.platform.target }}
|
target: ${{ matrix.platform.target }}
|
||||||
args: -F python-binding --release --out dist --find-interpreter
|
args: -F python-binding --release --out dist --find-interpreter
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue