Skip to content

Simple and easy to use "script runner" written in Rust.

License

Notifications You must be signed in to change notification settings

ali77gh/bake-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Bake-rs

OS - Linux OS - macOS OS - Windows

GitHub top language GitHub license

Bake is a universal cross-platform script runner written in Rust which can be used for any kind of project or application.

Essentially, you put your tasks in a YAML file. Then, you have an interactive CLI + TUI + GUI interface to run these tasks, enabling your coworkers (and yourself six months later, having forgotten all the commands) to execute your commands with the click of a button!

Bake can also help users install dependencies and setup environment variables. Furthermore, it supports a plugin system that allows you to import other people's bakefile.yaml configurations into your own.

You can see roadmap here

Table of content

Installation

Linux, Mac, WSL and Docker:

Single command installation:

curl -sfL https://raw.githubusercontent.com/ali77gh/bake-rs/stable/install.sh | sudo bash -

Windows:

Download latest release from here and copy that where you want and than add installation path to PATH env variable and than you are good to go.

Basic

Make a file named 'bakefile.yaml'

tasks:
  - name: clean
    help_msg: this task removes what you build
    commands: [ rm ./build ]

  - name: hello
    help_msg: this task says hello
    commands: 
      - echo hello world
      - echo hello from Bake

Usage

See list of tasks:

$ bake --show # or --list
 Tasks: 

 βš™  1  clean (this task removes what you build)

 βš™  2  hello (this task says hello)

Run specific task:

$ bake hello
  πŸ›ˆ Verbose : task 'hello' is running...
hello world
hello from bake
  πŸ›ˆ Verbose : Task 'hello' finished successfully. time: 2ms

Note: you can also run task by index like 'bake 1'

Start interactive CLI (see screen shot):

bake

This will run bake in loop

End event handlers

Handler syntax :

<EVENT_NAME>: <FUNCTION_CALL>

Events names:

  1. on_success: runs if task ends with zero code
  2. on_error: runs if task ends with non-zero code
  3. on_end: runs anyway (runs after on_success and on_error)

Example:

This script checks if 'build' directory exist and if it's exist it runs 'another_task1' if it's not exist it runs another_task2, and after that it runs another_task3 in ether ways.

tasks:
  - name: task_name
    commands: 
        - ls build
    on_success: @this.another_task1
    on_error: @this.another_task2
    on_end: @this.another_task3

Warning

DO NOT recursive call same function (bake will panic for stack overflow at some point) use keep_alive instead.

Keep alive

This option will run your task in a loop without considering exit-code

Note: default is false

Example

tasks:
  - name: task_name
    commands: 
        - npm start
    keep_alive: true

Dependencies

Sometimes you need some stuff installed on system to run a command.

for example to compile a Rust code-base you need to have 'cargo' installed.

dependencies:
  - name: cargo
    check: [ cargo --version ]
    link: https://www.rust-lang.org/tools/install # install button opens browser and user should manually install it

  - name: clippy
    dependencies: [ cargo ] # dependencies can depend on other dependencies
    check: [ cargo clippy --version ]
    commands: [ cargo install clippy ] # install button will automatically install

  - name: check-file-exist-dependency
    check: [ ls target ] # you can check if a file or directory exist like this
    commands: [ cargo build ]

Now you tasks can depends on dependencies

tasks:
  - name: release
    dependencies: [ cargo ] 
    commands: 
        - cargo build --release

  - name: check
    dependencies: [ cargo, clippy ]
    commands:
      - cargo check
      - cargo clippy
      - cargo fmt --check
      - cargo test

Note: by running 'release' Bake first gonna check if you have rust installed by running specified command: "cargo --version", if this commands exit with non zero code (means cargo is not installed) Bake will run cargo installation commands that you provided (or open provided link in browser) and while cargo is installed Bake will run 'release' task commands one by one.

Note: 'check' command works with exit code so if the exit code is 0 this means dependency is installed or exist but any other non-zero code will try to run your specified command or link to get your dependency installed.

You can also specify different commands or links for installing on different platforms:

Note: by default bake will ask yes/no question before start installing, but by passing '--non-interactive' switch bake will not wait for stdin and will start installing dependency.

dependencies:
  - name: wget
    check: [ wget --version ]
    commands_linux: [ sudo apt install wget ] # linux only
    link: https://www.gnu.org/software/wget/ # mac and windows (in this case)

Run other tasks from a task

For running other task from your task you need to put a '@' at the beginning of your command (so the parser will know it's a Bake command and not a system binary)

tasks:
  - name: release
    dependencies: [ rust ]
    commands: 
      - "@this.check" # here
      - cargo build --release
      - "@this.publish" # here

  - name: check
    commands:
      - cargo check
      - cargo clippy
      - cargo fmt --check
      - cargo test

  - name: publish
    commands:
      - cargo publish

Platform specific commands

Sometimes you need to run different commands on different operating systems:

tasks:
  - name: clean
    commands: # default (linux and mac in this case)
        - rm ./target
    commands_windows: 
        - del target

Note: If you run this on a windows system only the windows commands will run but as you did not specify commands_linux and commands_macos if you run this task on Linux or MacOS it will run default commands.

Note: if you don't specify platform specific commands for a platform with no default commands Bake will show an error while running that task on that specific platform.

Environment variables

Sometimes your tasks need some environment variables to run, in this case you can specify some 'envs' for your task and Bake will check if that environment variable is exist or not.

Note: you can also provide a default value for your env by providing 'default' field in your yaml

tasks:
  - name: listen
    envs:
      - name: PORT 
        default: 80
    commands: [ nc -l -p $PORT ]

You can also specify simple validation for your env that checks value before run.

  1. number (float or integer)
  2. integer
  3. variants(variation1|variation2|variation3,...)
tasks:
  - name: task_with_envs
    envs:
      - name: PORT
        default: 5
        validator: integer

      - name: build-mode
        default: debug
        validator: variants(debug|release)

And you can pass env to a task while calling it from another task

syntax is like:

tasks:
  - name: task_with_envs_caller
    commands:
      - "@this.task_with_envs --PORT 80 --build-mode release" # passing args to other task

Note: by default bake will ask for env on cli if it's not set, but by passing '--non-interactive' switch bake will not wait for stdin and will raise an error.

Working directory

You can setup working directory of a task:

tasks:
  - name: my_task
    commands:
      - "touch yoho"
    working_directory: sub_directory 

This task will make "./sub_directory/yoho" file

You can also pass absolute path like: "/home/ali/Music" if you want.

Plugin system

You can import other peoples '.yaml' files and call there tasks from your tasks or depend on their dependencies.

plugins:
  - name: fs
    path: ./.bake/fs.yaml
tasks:
  - name: my_task
    commands:
      - "@fs.copy_file"

Note: you can also write your local plugins for your project.

Stars

Stargazers over time