* feat: add Pyodide support Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: Hood Chatham <roberthoodchatham@gmail.com> Co-authored-by: Matthieu Darbois <mayeut@users.noreply.github.com> tests: fix two merge issues Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> fix: include schema Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * Try to fix xbuildenv path [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Try to install pyodide-build from main branch Try again Try again Update constraints file Try again Remove unused variable Drop constraints Remove --download option Fix xbuildenv install Try again Try again [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix: remove pinning on pyodide Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * Update for Pyodide 0.26.0a5 * Install pyodide-build from pypi * Update docs/options.md Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com> * Unxfail things that look like they were just a version mismatch * refactor: add constraints for pyodide Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * chore: minor cleanup Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * Apply suggestions from code review * Apply suggestion from code review * refactor: minor touchup Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * ci: xfail the pyodide test Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * review: use a pinned version of node * fix tests * review: error out on Windows * test: check node & test on macos arm64 * chore: minor cleanup * Add reference to emscripten libc issue * Apply suggestion from code review * review: use a pinned pip in test virtual environment * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * chore: rework test virtual environment seed packages * chore: workaround direct invocation of pytest This allows to still test direct invocation of `pytest` on most platforms (including pyodide on Linux) but falls back to `python -m pytest` when running pyodide on macOS. * Use release version of pyodide * fix: tests for 0.26.0 & parallel initialization of xbuildenv * Debug CI * fix: test/test_build_frontend_args.py * Revert "Debug CI" This reverts commit 917646cffc96dbfc619c47d1c03a828f447bcdb7. --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: Matthieu Darbois <mayeut@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
85 lines
2.5 KiB
Python
85 lines
2.5 KiB
Python
from __future__ import annotations
|
|
|
|
import shutil
|
|
import sys
|
|
import textwrap
|
|
|
|
import pytest
|
|
|
|
from cibuildwheel.util import CIBW_CACHE_PATH
|
|
|
|
from . import test_projects, utils
|
|
|
|
basic_project = test_projects.new_c_project()
|
|
basic_project.files["check_node.py"] = r"""
|
|
import sys
|
|
import shutil
|
|
from pathlib import Path
|
|
from pyodide.code import run_js
|
|
|
|
|
|
def check_node():
|
|
# cibuildwheel adds a pinned node version to the PATH
|
|
# check it's in the PATH then, check it's the one that runs pyoodide
|
|
cibw_cache_path = Path(sys.argv[1]).resolve(strict=True)
|
|
# find the node executable in PATH
|
|
node = shutil.which("node")
|
|
assert node is not None, "node is None"
|
|
node_path = Path(node).resolve(strict=True)
|
|
# it shall be in cibuildwheel cache
|
|
assert cibw_cache_path in node_path.parents, f"{cibw_cache_path} not a parent of {node_path}"
|
|
# find the path to the node executable that runs pyodide
|
|
node_js = run_js("globalThis.process.execPath")
|
|
assert node_js is not None, "node_js is None"
|
|
node_js_path = Path(node_js).resolve(strict=True)
|
|
# it shall be the one pinned by cibuildwheel
|
|
assert node_js_path == node_path, f"{node_js_path} != {node_path}"
|
|
|
|
|
|
if __name__ == "__main__":
|
|
check_node()
|
|
"""
|
|
|
|
|
|
@pytest.mark.parametrize("use_pyproject_toml", [True, False])
|
|
def test_pyodide_build(tmp_path, use_pyproject_toml):
|
|
if sys.platform == "win32":
|
|
pytest.skip("emsdk doesn't work correctly on Windows")
|
|
|
|
if not shutil.which("python3.12"):
|
|
pytest.skip("Python 3.12 not installed")
|
|
|
|
if use_pyproject_toml:
|
|
basic_project.files["pyproject.toml"] = textwrap.dedent(
|
|
"""
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
"""
|
|
)
|
|
|
|
project_dir = tmp_path / "project"
|
|
basic_project.generate(project_dir)
|
|
|
|
# check for node in 1 case only to reduce CI load
|
|
add_env = {}
|
|
if use_pyproject_toml:
|
|
add_env["CIBW_TEST_COMMAND"] = f"python {{project}}/check_node.py {CIBW_CACHE_PATH}"
|
|
|
|
# build the wheels
|
|
actual_wheels = utils.cibuildwheel_run(
|
|
project_dir,
|
|
add_args=["--platform", "pyodide"],
|
|
add_env=add_env,
|
|
)
|
|
|
|
# check that the expected wheels are produced
|
|
expected_wheels = [
|
|
"spam-0.1.0-cp312-cp312-pyodide_2024_0_wasm32.whl",
|
|
]
|
|
|
|
print("actual_wheels", actual_wheels)
|
|
print("expected_wheels", expected_wheels)
|
|
|
|
assert set(actual_wheels) == set(expected_wheels)
|