assignUser commented on code in PR #14596:
URL: https://github.com/apache/arrow/pull/14596#discussion_r1015554314
##########
docker-compose.yml:
##########
@@ -1245,6 +1246,38 @@ services:
/arrow/ci/scripts/python_build.sh /arrow /build &&
/arrow/ci/scripts/integration_turbodbc.sh /turbodbc /build"]
+ conda-python-substrait:
+ # Possible $SUBSTRAIT parameters:
+ # - `latest`: latest release
+ # - `master`: git master branch, use `docker-compose run --no-cache`
+ # - `<version>`: specific version available on conda-forge
+ # Usage:
+ # docker-compose build conda
+ # docker-compose build conda-cpp
+ # docker-compose build conda-python
+ # docker-compose build conda-python-substrait
+ # docker-compose run --rm conda-python-substrait
+ image: ${REPO}:${ARCH}-conda-python-substrait
+ build:
+ context: .
+ dockerfile: ci/docker/conda-python-substrait.dockerfile
+ cache_from:
+ - ${REPO}:${ARCH}-conda-python-${PYTHON}
+ args:
+ repo: ${REPO}
+ arch: ${ARCH}
+ python: ${PYTHON}
+ dask: ${DASK}
+ shm_size: *shm-size
+ environment:
+ <<: *ccache
Review Comment:
```suggestion
<<: [*ccache, *sccache]
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]