Astro Run is a highly extensible runner that can execute any workflow.
Add the following to your Cargo.toml
file:
toml
[dependencies]
astro-run = "0.1"
```rust use astro_run::{stream, AstroRun, Context, RunResult, Workflow};
struct Runner;
impl Runner { fn new() -> Self { Runner } }
impl astrorun::Runner for Runner { fn run(&self, ctx: Context) -> astrorun::RunResponse { let (tx, rx) = stream();
// Send running log
tx.log(ctx.command.run);
// Send success log
tx.end(RunResult::Succeeded);
Ok(rx)
} }
async fn main() { // Create astro run let astro_run = AstroRun::builder().runner(Runner::new()).build();
// Workflow let workflow = r#" jobs: job: name: Job steps: - run: Hello World "#;
// Create workflow let workflow = Workflow::builder() .config(workflow) .build(&astro_run) .unwrap();
// Create a new execution context let ctx = astrorun.executioncontext().build();
// Run workflow let _res = workflow.run(ctx).await; } ```
Astro Run only defines the interface for Runners. Users can implement their own desired Runners, e.g., Docker runner.
Contributions are welcome! Feel free to open issues or submit pull requests to improve the project.
This project is licensed under the MIT License.