Some checks failed
EcoArk Wheel Pipeline CI / build (push) Failing after 1m41s
- Add pipeline/manifest.py for packages.txt parsing - Implement real numpy cross-compilation (rebuild.py) with OHOS NDK + vendored meson - Extend CLI with --manifest, --build-from-source, --stage-integration modes - Add recipes/, experiments/, and scripts/ for integration staging and artifact upload - Update CI workflow with manifest validation, artifact upload, and release publishing - Update Makefile and README with new targets and documentation
19 lines
951 B
Plaintext
19 lines
951 B
Plaintext
# packages.txt — EcoArk HarmonyOS wheel rebuild manifest
|
|
#
|
|
# ── Format ──────────────────────────────────────────────
|
|
# package_name:git_repository_url
|
|
#
|
|
# Each uncommented line defines one package to rebuild.
|
|
# The CI pipeline clones the source, runs the HarmonyOS/arm64
|
|
# cross-compilation flow, and bundles all output .whl files
|
|
# into a single archive.
|
|
#
|
|
# ── Rules ───────────────────────────────────────────────
|
|
# * Empty lines and lines starting with # are ignored.
|
|
# * package_name — short identifier used for output filenames
|
|
# * repo_url — any `git clone`-compatible URL
|
|
#
|
|
# ── Examples (commented out — uncomment to activate) ───
|
|
numpy:https://github.com/numpy/numpy.git
|
|
# scipy:https://github.com/scipy/scipy.git
|