#workflow #runner #docker #automation #ci

astro-runner

AstroRun is a highly customizable workflow orchestrator that allows users to define their own core runners. Whether it's Docker or other platforms, AstroRun empowers users to run workflows with ease and flexibility.

8 releases (1 stable)

new 1.0.0 Jul 20, 2024
0.1.6 Mar 15, 2024
0.1.4 Feb 24, 2024
0.1.3 Oct 1, 2023
0.1.1 Aug 23, 2023

#202 in Unix APIs

Download history 14/week @ 2024-04-01 10/week @ 2024-07-01 132/week @ 2024-07-15

142 downloads per month

MIT license

155KB
4.5K SLoC

Astro Runner

astro-run-runner is a specific runner implementation within astro-run. It supports running the smallest execution unit of workflow steps in both local and Dockerfile environments.

It can also be used in conjunction with other components of the astro-run ecosystem, such as astro-run-server and astro-run-remote-runner.

Example

Add astro-run and astro-runner as dependencies in your Cargo.toml:

[dependencies]
astro-run = "0.1"
astro-runner = "0.1"

Code Example

use astro_run::{AstroRun, Workflow};
use astro_runner::AstroRunner;

#[tokio::main]
#[ignore]
async fn main() {
  let workflow = r#"
jobs:
  test:
    name: Test Job
    steps:
      - timeout: 60m
        continue-on-error: false
        run: echo "Hello World" >> test.txt
      - run: |
          content=$(cat test.txt)
          echo Content is $content
          echo "Cache" >> /home/work/caches/test.txt
  "#;
  let runner = AstroRunner::builder().build().unwrap();

  let astro_run = AstroRun::builder().runner(runner).build();

  let workflow = Workflow::builder()
    .config(workflow)
    .build(&astro_run)
    .await
    .unwrap();

  let ctx = astro_run.execution_context().build();

  let _res = workflow.run(ctx).await;
}

Dependencies

~18–32MB
~629K SLoC