comment out tests that use pre-europa pipelines

Signed-off-by: Joel Longtine <joel@dagger.io>
This commit is contained in:
Joel Longtine
2022-02-21 12:16:55 -07:00
parent 072d144e68
commit 298e19b305
6 changed files with 83 additions and 76 deletions

View File

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