mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-24 15:07:38 +00:00
Build pyodide wheel without rocksdb
This commit is contained in:
+3
-2
@@ -276,8 +276,9 @@ dependency_tree: "dict[str, tuple[str, ...]]" = {
|
|||||||
def gather_dependencies(dep: str) -> "Generator[str]":
|
def gather_dependencies(dep: str) -> "Generator[str]":
|
||||||
yield dep
|
yield dep
|
||||||
for d in dependency_tree[dep]:
|
for d in dependency_tree[dep]:
|
||||||
for x in gather_dependencies(d):
|
if f"without-{d.lower()}" not in flags:
|
||||||
yield x
|
for x in gather_dependencies(d):
|
||||||
|
yield x
|
||||||
|
|
||||||
|
|
||||||
if "v" in flags:
|
if "v" in flags:
|
||||||
|
|||||||
+1
-1
@@ -7,7 +7,7 @@ source:
|
|||||||
|
|
||||||
build:
|
build:
|
||||||
script: |
|
script: |
|
||||||
BUILD_CFG=Release python nix/build-all.py --without-hdf5 --without-opencollada --without-swig --without-pcre -v --wasm --py313 IfcOpenShell-Python
|
BUILD_CFG=Release python nix/build-all.py --without-rocksdb --without-hdf5 --without-opencollada --without-swig --without-pcre -v --wasm --py313 IfcOpenShell-Python
|
||||||
mv package/ifcopenshell .
|
mv package/ifcopenshell .
|
||||||
cp pyodide/setup.py .
|
cp pyodide/setup.py .
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user