Merge pull request #182 from verdverm/add-missing-ops
add missing ops to #Op in stdlib/llb
This commit is contained in:
commit
c42ccd4385
2
Makefile
2
Makefile
@ -21,7 +21,7 @@ cuefmt:
|
|||||||
|
|
||||||
.PHONY: lint
|
.PHONY: lint
|
||||||
lint: cuefmt check-buildkit-version
|
lint: cuefmt check-buildkit-version
|
||||||
golangci-lint run
|
golangci-lint run --timeout 3m
|
||||||
@test -z "$$(git status -s . | grep -e "^ M" | grep .cue | cut -d ' ' -f3 | tee /dev/stderr)"
|
@test -z "$$(git status -s . | grep -e "^ M" | grep .cue | cut -d ' ' -f3 | tee /dev/stderr)"
|
||||||
|
|
||||||
.PHONY: check-buildkit-version
|
.PHONY: check-buildkit-version
|
||||||
|
@ -2,7 +2,18 @@
|
|||||||
package llb
|
package llb
|
||||||
|
|
||||||
// One operation in a script
|
// One operation in a script
|
||||||
#Op: #FetchContainer | #FetchGit | #Export | #Exec | #Local | #Copy | #Load | #Subdir | #WriteFile | #Mkdir
|
#Op: #Export |
|
||||||
|
#FetchContainer |
|
||||||
|
#PushContainer |
|
||||||
|
#FetchGit |
|
||||||
|
#Exec |
|
||||||
|
#Local |
|
||||||
|
#Copy |
|
||||||
|
#Load |
|
||||||
|
#Subdir |
|
||||||
|
#WriteFile |
|
||||||
|
#Mkdir |
|
||||||
|
#DockerBuild
|
||||||
|
|
||||||
// Export a value from fs state to cue
|
// Export a value from fs state to cue
|
||||||
#Export: {
|
#Export: {
|
||||||
|
Reference in New Issue
Block a user