pipeline: #compute -> #up

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi
2021-04-02 14:58:12 -07:00
committed by Solomon Hykes
parent 6486e159c1
commit 8a4aa4d42b
5 changed files with 10 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ import (
// An artifact such as source code checkout, container image, binary archive...
// May be passed as user input, or computed by a buildkit pipeline
#Artifact: {
#compute: [...llb.#Op]
#up: llb.#Pipeline
_
...
}

View File

@@ -1,7 +1,7 @@
// llb: compile LLB graphs executable by buildkit
package llb
// One operation in a script
// One operation in a pipeline
#Op: #Export |
#FetchContainer |
#PushContainer |
@@ -15,6 +15,9 @@ package llb
#Mkdir |
#DockerBuild
// Pipeline is a series of operations
#Pipeline: [...llb.#Op]
// Export a value from fs state to cue
#Export: {
do: "export"