The `build` subcommand can now take in any number of recipe files and will build them all in parallel. Along with this new ability, I've added a way to easily distinguish which part of the build log belongs to which recipe. Check out the `docker_build` action of this PR for an example.  ## Tasks - [x] Make build log follow same pattern as normal logs to keep things consistent - [x] Update color ranges based on @xynydev 's feedback - [x] Deal with ANSI control characters in log output - [x] Add [`indicatif`](https://crates.io/crates/indicatif) to make logs look nicer - [x] Add ability to print logs to a file
38 lines
746 B
YAML
38 lines
746 B
YAML
name: cli/test
|
|
description: This is my personal OS image.
|
|
base-image: ghcr.io/ublue-os/silverblue-main
|
|
alt-tags:
|
|
- gts
|
|
- stable
|
|
image-version: 39
|
|
modules:
|
|
- from-file: akmods.yml
|
|
- from-file: flatpaks.yml
|
|
|
|
- type: files
|
|
files:
|
|
- usr: /usr
|
|
|
|
- type: script
|
|
scripts:
|
|
- example.sh
|
|
|
|
- type: rpm-ostree
|
|
repos:
|
|
- https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%OS_VERSION%/atim-starship-fedora-%OS_VERSION%.repo
|
|
install:
|
|
- micro
|
|
- starship
|
|
remove:
|
|
- firefox
|
|
- firefox-langpacks
|
|
|
|
- type: signing
|
|
|
|
- type: test-module
|
|
|
|
- type: containerfile
|
|
containerfiles:
|
|
- labels
|
|
snippets:
|
|
- RUN echo "This is a snippet" && ostree container commit
|