Skip to content
Snippets Groups Projects
Select Git revision
  • 38fe0ff4fbf89922cec69eeeb0cc0e48449f9940
  • main default protected
  • fri-decode-with-shard-and-position
  • better-fri
  • fri-block-position-pub
  • fec-shard-serde
  • zoda
  • v1.0.2 protected
  • v1.1.0 protected
  • paper-joss protected
  • ci-image-tag-in-file
  • fine-fri-measures
  • multithread
  • transpose-matrices
  • fri-encode-opt
  • paper-jors
  • fri-bad-parameters
  • fri-results
  • paper-typst
  • 1.1.0+lock
  • 1.0.2+lock
  • 1.0.1+bib
  • 1.0.0+bib
  • 1.0.2+bib
  • 1.1.0+bib
  • 1.1.0
  • 1.0.2
  • 1.0.1
  • 1.0.0
  • 1.0-alpha
  • 0.3.0
  • 0.1.0-pairing
  • 0.2.0
  • 0.1.0
34 results

komodo

  • Clone with SSH
  • Clone with HTTPS
  • STEVAN Antoine's avatar
    STEVAN Antoine authored
    ## examples
    ```bash
    ./make.rs container list --json
        | from ndjson
        | into datetime CreatedAt
        | into filesize Size VirtualSize
        | reject CreatedSince
    ```
    or
    ```bash
    ./make.rs container list --json
        | from ndjson
        | into datetime CreatedAt
        | into filesize Size VirtualSize
        | reject CreatedSince
        | select ID Repository Tag CreatedAt VirtualSize
        | update Tag { str substring 0..<7 }
    ```
    
    ## changelog
    - transform options of `container` to sub-subcommands
      - `container` --> `container build`
      - `container --login` --> `container login`
      - `container --push` --> `container push`
    - add `container list` to print the local images for the GitLab and GitHub repositories
      - `container list` will print in a pretty table
      - `container list --json` will print as NDJSON, i.e. one image per line as JSON
    - use wrappers around `nob::run_cmd_as_vec_and_fail!`
      - `extend_and_run` to run a partial command with an extra vector of args
      - `extend_and_run_and_capture_silent` to run a partial command with an extra vector of args and silently capture the stdout into a string
      - this allows to get rid of the `#[rustfmt::skip]` _directive_ on `main` and format the code not too aggressively
    38fe0ff4
    History
    Name Last commit Last update