The docs.rs build is failing due to PDAL not being available in the documentation environment.
Advice has been requested from the cxx community to determine what the best path forward is.
Notes
See also: https://docs.rs/about/builds
Building in docs.rs environment
git clone https://github.com/rust-lang/docs.rs.git
cd docs.rs
- Edit
docker-compose.yaml and add a volume mount to your package (figuratively):
services.web.volumes[-1]: "/my/source/pdal:/opt/docsrs/pdal:ro"
docker-compose up -d db s3
- Run build:
docker-compose run web build crate --local /opt/docsrs/pdal
- View build:
cargo run -- start-web-server
The docs.rs build is failing due to PDAL not being available in the documentation environment.
Advice has been requested from the
cxxcommunity to determine what the best path forward is.Notes
See also: https://docs.rs/about/builds
Building in docs.rs environment
git clone https://github.com/rust-lang/docs.rs.gitcd docs.rsdocker-compose.yamland add a volume mount to your package (figuratively):services.web.volumes[-1]: "/my/source/pdal:/opt/docsrs/pdal:ro"docker-compose up -d db s3docker-compose run web build crate --local /opt/docsrs/pdalcargo run -- start-web-server