Skip to content
Snippets Groups Projects
Commit 304258d1 authored by Brian Lewis's avatar Brian Lewis
Browse files

Readd makefile

parent 3a517905
No related branches found
No related tags found
2 merge requests!2Ingest different DRS formats,!1Ingest
Pipeline #16135 failed
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
Makefile 0 → 100644
build:
cargo build
lint:
cargo fmt --check
cargo clippy -- -D warnings
docs:
cargo doc --open --lib --no-deps
cli-docs:
cargo doc --open --bin=cli --no-deps
dummy-data:
cd cli && \
cargo run -- solr-ingest --data-dir ../.docker/data
# sadly necessary to get this compiling for Linux on Mac thanks to openssl
# TODO: figure out if a local install of openssl on Mac can make this work
docker-build:
docker run \
-v $(PWD):/workspace \
-w /workspace \
rust:latest \
cargo build --release
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment