mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #5466 from donn/uv_wheel_hotfix
hotfix: wheel ci issues
This commit is contained in:
commit
3d80e1663e
|
|
@ -54,17 +54,12 @@ jobs:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
submodules: true
|
submodules: true
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- if: ${{ matrix.os.family == 'linux' }}
|
|
||||||
name: "[Linux] Install UV"
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
||||||
- uses: actions/setup-python@v5
|
- uses: actions/setup-python@v5
|
||||||
- name: Get FFI
|
- name: Get FFI
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ffi
|
mkdir -p ffi
|
||||||
curl -L https://github.com/libffi/libffi/releases/download/v3.4.6/libffi-3.4.6.tar.gz | tar --strip-components=1 -xzC ffi
|
curl -L https://github.com/libffi/libffi/releases/download/v3.4.8/libffi-3.4.8.tar.gz | tar --strip-components=1 -xzC ffi
|
||||||
- if: ${{ matrix.os.family == 'linux' }}
|
- if: ${{ matrix.os.family == 'linux' }}
|
||||||
name: "[Linux] Bison 3.8.2"
|
name: "[Linux] Bison 3.8.2"
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
|
||||||
1
setup.py
1
setup.py
|
|
@ -51,6 +51,7 @@ class libyosys_so_ext(Extension):
|
||||||
"ENABLE_TCL=0",
|
"ENABLE_TCL=0",
|
||||||
"ENABLE_READLINE=0",
|
"ENABLE_READLINE=0",
|
||||||
"ENABLE_EDITLINE=0",
|
"ENABLE_EDITLINE=0",
|
||||||
|
"PYOSYS_USE_UV=0", # + install requires takes its role when building wheels
|
||||||
# Always compile and include ABC in wheel
|
# Always compile and include ABC in wheel
|
||||||
"ABCEXTERNAL=",
|
"ABCEXTERNAL=",
|
||||||
# Show compile commands
|
# Show compile commands
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue