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/tests/ops/subdir/error/main.cue
Tom Chauveau 57256eb8c4 Add tests for Subdir operation
Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
2021-04-24 19:32:02 +02:00

32 lines
428 B
CUE

package main
import "dagger.io/dagger/op"
hello: {
string
#up: [
op.#FetchContainer & {
ref: "alpine"
},
op.#Exec & {
args: ["mkdir", "-p", "/tmp/foo"]
},
op.#Exec & {
args: ["sh", "-c", "echo -n world > /tmp/foo/hello"]
},
op.#Subdir & {
dir: "/tmp/foo"
},
// Should FAIL
op.#Exec & {
always: true
args: ["ls"]
},
op.#Export & {
source: "./hello"
format: "string"
},
]
}