removed dagger up in favor of dagger do
Signed-off-by: Richard Jones <richard@dagger.io>
This commit is contained in:
@@ -14,27 +14,29 @@ dagger.#Plan & {
|
||||
source: "busybox:1.34.1-glibc@sha256:ec98391b8f0911db08be2ee6c46813eeac17b9625b402ea1ce45dcfcd05d78d6"
|
||||
}
|
||||
|
||||
verify_alpine_3_15_0: dagger.#ReadFile & {
|
||||
input: alpine3_15_0.output
|
||||
path: "/etc/alpine-release"
|
||||
} & {
|
||||
// assert result
|
||||
contents: "3.15.0\n"
|
||||
}
|
||||
test: {
|
||||
verify_alpine_3_15_0: dagger.#ReadFile & {
|
||||
input: alpine3_15_0.output
|
||||
path: "/etc/alpine-release"
|
||||
} & {
|
||||
// assert result
|
||||
contents: "3.15.0\n"
|
||||
}
|
||||
|
||||
copy: dagger.#Copy & {
|
||||
input: busybox1_34_1.output
|
||||
contents: alpine3_15_0.output
|
||||
source: "/etc/alpine-release"
|
||||
dest: "/alpine3_15_0_release"
|
||||
}
|
||||
copy: dagger.#Copy & {
|
||||
input: busybox1_34_1.output
|
||||
contents: alpine3_15_0.output
|
||||
source: "/etc/alpine-release"
|
||||
dest: "/alpine3_15_0_release"
|
||||
}
|
||||
|
||||
verify_copy: dagger.#ReadFile & {
|
||||
input: copy.output
|
||||
path: "/alpine3_15_0_release"
|
||||
} & {
|
||||
// assert result
|
||||
contents: "3.15.0\n"
|
||||
verify_copy: dagger.#ReadFile & {
|
||||
input: copy.output
|
||||
path: "/alpine3_15_0_release"
|
||||
} & {
|
||||
// assert result
|
||||
contents: "3.15.0\n"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user