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/valid/simple/main.cue

27 lines
379 B
CUE
Raw Normal View History

package testing
import "alpha.dagger.io/dagger/op"
TestSimpleSubdir: {
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"
},
op.#Export & {
source: "./hello"
format: "string"
},
]
}