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
Joel Longtine 2caccc69e8 Add TODO for Europa conversion
Signed-off-by: Joel Longtine <joel@dagger.io>
2022-02-23 12:20:01 -07:00

18 lines
331 B
CUE

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