psboard-qaqc-postprocess/README.md

41 lines
645 B
Markdown
Raw Permalink Normal View History

# psb_qaqc
2024-07-14 11:12:01 +09:00
WIP
2024-07-24 12:48:41 +09:00
For Japanese: [./docs/README-ja.md](README-ja.md)
## For developers
2024-07-24 12:48:41 +09:00
Use `rustup` to set up developing tools.
### build / run
```sh
cargo build
cargo run -- -h
```
Build for JATHub using cross:
```sh
CROSS_CONTAINER_ENGINE=podman cross build --release --target armv7-unknown-linux-musleabihf
```
2024-07-24 12:48:41 +09:00
`CROSS_CONTAINER_ENGINE=podman` is optional(default docker).
### test
```sh
cargo test
```
### doc
```sh
cargo doc --open
```
## TODO
2024-07-14 11:12:01 +09:00
- add more unittests
- test for various cases
2024-07-21 21:25:22 +09:00
- split into mods(maybe as lib crates)
2024-07-14 11:12:01 +09:00
- add csv check/validate subcommand
- skew measurement?
- skew measurement test
2024-07-14 11:12:01 +09:00
check `TODO`s in comments.