You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/11/18 05:18:43 UTC

[GitHub] [arrow-ballista] andygrove opened a new pull request, #528: fix python build in CI

andygrove opened a new pull request, #528:
URL: https://github.com/apache/arrow-ballista/pull/528

   # Which issue does this PR close?
   
   <!--
   We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. For example `Closes #123` indicates that this PR will close issue #123.
   -->
   
   Closes #.
   
    # Rationale for this change
   <!--
    Why are you proposing this change? If this is already explained clearly in the issue then this section is not needed.
    Explaining clearly why changes are proposed helps reviewers understand your changes and offer better suggestions for fixes.  
   -->
   
   # What changes are included in this PR?
   <!--
   There is no need to duplicate the description in the issue here but it is sometimes worth providing a summary of the individual changes in this PR.
   -->
   
   # Are there any user-facing changes?
   <!--
   If there are user-facing changes then we may require documentation to be updated before approving the PR.
   -->
   
   <!--
   If there are any breaking changes to public APIs, please add the `api change` label.
   -->
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-ballista] andygrove commented on pull request #528: fix python build in CI

Posted by GitBox <gi...@apache.org>.
andygrove commented on PR #528:
URL: https://github.com/apache/arrow-ballista/pull/528#issuecomment-1319566042

   With changes in this PR, it now fails with:
   
   ```
   $ docker run --rm -it -v $(pwd):/io             --workdir /io/python             konstin2/maturin:v0.12.10             build
   🍹 Building a mixed python/rust project
   💥 maturin failed
     Caused by: Cargo metadata failed. Does your crate compile with `cargo build`?
     Caused by: `cargo metadata` exited with an error:     Updating crates.io index
   error: failed to select a version for the requirement `parquet = "^26.0.0"`
   candidate versions found which didn't match: 15.0.0, 14.0.0, 13.0.0, ...
   location searched: crates.io index
   required by package `ballista-python v0.10.0 (/io/python)`
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-ballista] andygrove merged pull request #528: fix python build in CI

Posted by GitBox <gi...@apache.org>.
andygrove merged PR #528:
URL: https://github.com/apache/arrow-ballista/pull/528


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-ballista] andygrove commented on pull request #528: fix python build in CI

Posted by GitBox <gi...@apache.org>.
andygrove commented on PR #528:
URL: https://github.com/apache/arrow-ballista/pull/528#issuecomment-1319953680

   This now works locally at least:
   
   ```
   $ docker run --rm -it -v $(pwd)/..:/io             --workdir /io/python             ghcr.io/pyo3/maturin:v0.13.7             build
   🍹 Building a mixed python/rust project
   🔗 Found pyo3 bindings with abi3 support for Python ≥ 3.7
   🐍 Not using a specific python interpreter
      Compiling ballista-core v0.10.0 (/io/ballista/core)
      Compiling datafusion v14.0.0
      Compiling datafusion-proto v14.0.0
      Compiling ballista v0.10.0 (/io/ballista/client)
      Compiling ballista-python v0.10.0 (/io/python)
       Finished dev [unoptimized + debuginfo] target(s) in 40.20s
   📦 Built wheel for abi3 Python ≥ 3.7 to /io/python/target/wheels/ballista-0.10.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-ballista] andygrove commented on pull request #528: fix python build in CI

Posted by GitBox <gi...@apache.org>.
andygrove commented on PR #528:
URL: https://github.com/apache/arrow-ballista/pull/528#issuecomment-1319574309

   making more progress ... now failing with:
   
   ```
   error: failed to run custom build command for `ballista-core v0.10.0 (/io/ballista/core)`
   
   Caused by:
     process didn't exit successfully: `/io/python/target/debug/build/ballista-core-4746e61e3cf8a0be/build-script-build` (exit status: 101)
     --- stdout
     cargo:rerun-if-env-changed=FORCE_REBUILD
     cargo:rerun-if-changed=proto/ballista.proto
     cargo:rustc-env=RUSTC_VERSION=1.64.0
     cargo:rerun-if-changed=proto/datafusion.proto
     cargo:rerun-if-changed=proto/ballista.proto
     cargo:rerun-if-changed=proto
   
     --- stderr
     thread 'main' panicked at '
     Could not find `protoc` installation and this build crate cannot proceed without
     this knowledge. If `protoc` is installed and this crate had trouble finding
     it, you can set the `PROTOC` environment variable with the specific path to your
     installed `protoc` binary.
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org