A command executor with caching. It is:
Razel is not the best choice for building software, especially there's no built-in support for compiler setup and header dependencies.
Use rustup to install Rust. Install protobuf-compiler
. Clone and build Razel:
bash
cargo install razel
The native input format for Razel is a razel.jsonl
file, see the example test/razel.jsonl.
razel exec -f test/razel.jsonl
The preferred way to create a razel.jsonl
file is using one of the high-level APIs.
Install Deno to use the TypeScript API.
Run the example Deno script to create test/razel.jsonl
and execute it with Razel:
bash
deno run --allow-write=. --check test/deno.ts
razel exec -f test/razel.jsonl
The Python API requires Python >= 3.8.
Run the example Python script to create test/razel.jsonl
and execute it with Razel:
bash
pip install razel
python3 test/python.py
razel exec -f test/razel.jsonl
In addition to razel.jsonl
, Razel can directly execute a batch file containing commands.
Input and output files need to be specified, which is WIP.
Execute the example test/batch.sh with Razel:
bash
razel exec -f test/batch.sh
Razel is in active development and not ready for production. CLI and format of razel.jsonl
will likely change.
| OS | Status | Note | |---------|--------|-----------------------------------| | Linux | ✓ | stable, main development platform | | Mac | ✓ | used and tested in CI | | Windows | (✓) | tested in CI only |
| Feature | Status | Note |
|-------------------------------------------|---------|------------------------------------------------------------|
| command execution in sandbox | ✓ | |
| multithreaded execution | ✓ | |
| local caching | ✓ | |
| remote caching | ✘ | WIP |
| remote execution | ✘ | TODO |
| OOM handling: retry with less concurrency | ✓ Linux | requires sudo cgcreate -a $USER -t $USER -g memory:razel
|
Razel parses the stdout of executed commands to capture runtime measurements and writes them to razel-out/measurements.csv
.
Currently, the <CTestMeasurement>
and <DartMeasurement>
tags as used by CTest/CDash are supported:
<CTestMeasurement type="numeric/double" name="score">12.3</CTestMeasurement>
<CTestMeasurement type="text/string" name="result">ok</CTestMeasurement>
Supporting custom formats is planned.
Commands with huge number of arguments might result in command lines which are too long to be executed by the OS. Razel detects those cases and replaces the arguments with a response file. The filename starts with @.
The idea to build fast and correct is based on Bazel. Razel uses data structures from the Bazel Remote Execution API for caching.