Andrei Boar
Andrei Boar
Update documentation how Nix resolves when `NIX_PATH` is not set
We can remove [Store](https://github.com/benchkram/bob/blob/main/pkg/store/store.go) interface Following reasons: 1. Clean() is implemented only on the local, Done only on the remote 2. ctx was added to the interface only for the...
Maybe we should run `nix-channel --update` before building dependencies with nix to make sure everyone has the latest local nixpkgs: `$ nix-channel --update` maybe a `bob nix update` cmd which...
closes https://github.com/benchkram/bob/issues/98 This PR also fixes the issue with rebuild not happening after a restart
Currently, is not possible to provide a bobfile with a different name than bob.yaml. This is problematic especially in tests where if we have multiple mock files we always need...
closes #73 This was branched of from https://github.com/benchkram/bob/pull/113 since they are related
In the [docs](https://docs.earthly.dev/basics/part-1-a-simple-earthfile) it states _"Notice how the output is interleaved between +docker and +build. This is because the system executes independent build steps in parallel."_ However, by looking at...
closes https://github.com/benchkram/bob/issues/226
For a Bobfile: ```yaml build: build: input: "*" cmd: echo "Hello build!" ``` running `bob inspect input build` will display the number of inputs, ex. "Task build has 3 inputs"...
### Todo * Remove superfluous artifact sync output from bob build * enable detailed information using the verbose flag. Example of the current output which looks kind of messy: ```shell...