This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/docs/faq/1231-always-execute.md
guillaume 204d067bcc docs: Implement FAQ page, default values in Cue + fix sidebar and titles
Move faq pages from guide to specific FAQ page, shown as per tailscale format.
Custom in-house logic implemented because Docusaurus doesn't manage it

Signed-off-by: guillaume <guillaume.derouville@gmail.com>
2022-04-14 15:35:15 +02:00

549 B

slug displayed_sidebar
/1231/always-execute europa

Always executing an action

Dagger implemented a way to tell Buildkit not to rely on cache for a specific action.

The docker.#Run and core.#Exec definitions have an always field:

// If set to true, the cache will never be triggered for that specific action.
always: bool | *false

Any package composed on top of it (bash.#Run for example) also exposes this field as it will inherit it from docker.#Run:

test: bash.#Run & {
    always: true
    ...
}