Merge dagger.io/dagger/engine into dagger.io/dagger
Signed-off-by: Solomon Hykes <solomon@dagger.io>
This commit is contained in:
@@ -1,20 +1,19 @@
|
||||
package hidden
|
||||
|
||||
import (
|
||||
"dagger.io/dagger/engine"
|
||||
)
|
||||
|
||||
#Hidden: {
|
||||
_pull: engine.#Pull & {
|
||||
_pull: dagger.#Pull & {
|
||||
source: "alpine:3.15.0@sha256:e7d88de73db3d3fd9b2d63aa7f447a10fd0220b7cbf39803c803f2af9ba256b3"
|
||||
}
|
||||
_write: engine.#WriteFile & {
|
||||
_write: dagger.#WriteFile & {
|
||||
input: _pull.output
|
||||
path: "/testing"
|
||||
contents: "1,2,3"
|
||||
permissions: 700
|
||||
}
|
||||
_readfile: engine.#ReadFile & {
|
||||
_readfile: dagger.#ReadFile & {
|
||||
input: _write.output
|
||||
path: "/testing"
|
||||
} & {
|
||||
|
@@ -1,22 +1,22 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"dagger.io/dagger/engine"
|
||||
"dagger.io/dagger"
|
||||
"testing.dagger.io/hidden"
|
||||
)
|
||||
|
||||
engine.#Plan & {
|
||||
dagger.#Plan & {
|
||||
actions: {
|
||||
pull: engine.#Pull & {
|
||||
pull: dagger.#Pull & {
|
||||
source: "alpine:3.15.0@sha256:e7d88de73db3d3fd9b2d63aa7f447a10fd0220b7cbf39803c803f2af9ba256b3"
|
||||
}
|
||||
_write: engine.#WriteFile & {
|
||||
_write: dagger.#WriteFile & {
|
||||
input: pull.output
|
||||
path: "/testing"
|
||||
contents: "1,2,3"
|
||||
permissions: 700
|
||||
}
|
||||
readfile: engine.#ReadFile & {
|
||||
readfile: dagger.#ReadFile & {
|
||||
input: _write.output
|
||||
path: "/testing"
|
||||
} & {
|
||||
|
Reference in New Issue
Block a user