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/plan/hello-europa/main.cue

17 lines
268 B
CUE
Raw Normal View History

package main
import (
"dagger.io/dagger"
"alpha.dagger.io/os"
)
dagger.#Plan & {
actions: {
sayHello: os.#Container & {
command: "echo Hello Europa! > /out.txt"
}
verify: "Hello Europa!\n" & (os.#File & {from: sayHello, path: "/out.txt"}).contents
}
}