1
1
steps :
2
- - id : docker
2
+ - id : docker_buildx
3
3
name : docker:20.10
4
4
args :
5
5
- build
@@ -14,33 +14,47 @@ steps:
14
14
waitFor :
15
15
- " -"
16
16
17
+ - id : buildx_create
18
+ name : docker-buildx:cloudbuild
19
+ args :
20
+ - buildx
21
+ - create
22
+ - --bootstrap
23
+ - --name=cloudbuild
24
+ - --driver=docker-container
25
+ - --driver-opt=image=moby/buildkit:nightly
26
+ - --driver-opt=network=cloudbuild
27
+ - --buildkitd-flags='--debug'
28
+ - --use
29
+ waitFor :
30
+ - " docker_buildx"
31
+
17
32
- id : protoc-builder
18
33
name : docker-buildx:cloudbuild
19
34
args :
20
35
- buildx
21
36
- build
22
37
- --target=protoc-builder
23
- - --build-arg=BUILDKIT_INLINE_CACHE=1
24
38
- --build-arg=PROTOC_VERSION=${_PROTOC_VERSION}
25
39
- --build-arg=GOLANG_VERSION=${_GOLANG_VERSION}
26
40
- --build-arg=ALPINE_VERSION=${_ALPINE_VERSION}
27
- - --output=type=image,name=gcr.io/$PROJECT_ID/protoc/protoc-builder:cloudbuild_cache,push=true
28
41
- --cache-from=type=registry,ref=gcr.io/$PROJECT_ID/protoc/protoc-builder:cloudbuild_cache
42
+ - --output=type=image,name=gcr.io/$PROJECT_ID/protoc/protoc-builder:cloudbuild_cache,push=true
29
43
- .
30
44
waitFor :
31
- - " docker "
45
+ - " buildx_create "
32
46
33
47
- id : protoc
34
48
name : docker-buildx:cloudbuild
35
49
args :
36
50
- buildx
37
51
- build
38
52
- --target=protoc
39
- - --build-arg=BUILDKIT_INLINE_CACHE=1
40
53
- --build-arg=PROTOC_VERSION=${_PROTOC_VERSION}
41
54
- --build-arg=GOLANG_VERSION=${_GOLANG_VERSION}
42
55
- --build-arg=ALPINE_VERSION=${_ALPINE_VERSION}
43
- - --output=type=image,name=gcr.io/$PROJECT_ID/protoc/protoc:pr${_PR_NUMBER},push=false
56
+ - --tag=gcr.io/$PROJECT_ID/protoc/protoc:pr${_PR_NUMBER}
57
+ - --load
44
58
- .
45
59
waitFor :
46
60
- " protoc-builder"
@@ -51,11 +65,11 @@ steps:
51
65
- buildx
52
66
- build
53
67
- --target=protoc-debug
54
- - --build-arg=BUILDKIT_INLINE_CACHE=1
55
68
- --build-arg=PROTOC_VERSION=${_PROTOC_VERSION}
56
69
- --build-arg=GOLANG_VERSION=${_GOLANG_VERSION}
57
70
- --build-arg=ALPINE_VERSION=${_ALPINE_VERSION}
58
- - --output=type=image,name=gcr.io/$PROJECT_ID/protoc/protoc:pr${_PR_NUMBER}-debug,push=false
71
+ - --tag=gcr.io/$PROJECT_ID/protoc/protoc:pr${_PR_NUMBER}-debug
72
+ - --load
59
73
- .
60
74
waitFor :
61
75
- " protoc-builder"
@@ -66,14 +80,13 @@ steps:
66
80
- buildx
67
81
- build
68
82
- --target=golang-builder
69
- - --build-arg=BUILDKIT_INLINE_CACHE=1
70
83
- --build-arg=PROTOC_VERSION=${_PROTOC_VERSION}
71
84
- --build-arg=GOLANG_VERSION=${_GOLANG_VERSION}
72
85
- --build-arg=ALPINE_VERSION=${_ALPINE_VERSION}
73
86
- --build-arg=PROTOC_GEN_GO_VERSION=${_PROTOC_GEN_GO_VERSION}
74
87
- --build-arg=PROTOC_GEN_GO_GRPC_VERSION=${_PROTOC_GEN_GO_GRPC_VERSION}
75
- - --output=type=image,name=gcr.io/$PROJECT_ID/protoc/golang-builder:cloudbuild_cache,push=true
76
88
- --cache-from=type=registry,ref=gcr.io/$PROJECT_ID/protoc/golang-builder:cloudbuild_cache
89
+ - --output=type=image,name=gcr.io/$PROJECT_ID/protoc/golang-builder:cloudbuild_cache,push=true
77
90
- .
78
91
waitFor :
79
92
- " protoc"
@@ -85,13 +98,13 @@ steps:
85
98
- buildx
86
99
- build
87
100
- --target=golang
88
- - --build-arg=BUILDKIT_INLINE_CACHE=1
89
101
- --build-arg=PROTOC_VERSION=${_PROTOC_VERSION}
90
102
- --build-arg=GOLANG_VERSION=${_GOLANG_VERSION}
91
103
- --build-arg=ALPINE_VERSION=${_ALPINE_VERSION}
92
104
- --build-arg=PROTOC_GEN_GO_VERSION=${_PROTOC_GEN_GO_VERSION}
93
105
- --build-arg=PROTOC_GEN_GO_GRPC_VERSION=${_PROTOC_GEN_GO_GRPC_VERSION}
94
106
- --tag=gcr.io/$PROJECT_ID/protoc/golang:pr${_PR_NUMBER}
107
+ - --load
95
108
- .
96
109
waitFor :
97
110
- " golang-builder"
@@ -102,13 +115,13 @@ steps:
102
115
- buildx
103
116
- build
104
117
- --target=golang-debug
105
- - --build-arg=BUILDKIT_INLINE_CACHE=1
106
118
- --build-arg=PROTOC_VERSION=${_PROTOC_VERSION}
107
119
- --build-arg=GOLANG_VERSION=${_GOLANG_VERSION}
108
120
- --build-arg=ALPINE_VERSION=${_ALPINE_VERSION}
109
121
- --build-arg=PROTOC_GEN_GO_VERSION=${_PROTOC_GEN_GO_VERSION}
110
122
- --build-arg=PROTOC_GEN_GO_GRPC_VERSION=${_PROTOC_GEN_GO_GRPC_VERSION}
111
123
- --tag=gcr.io/$PROJECT_ID/protoc/golang:pr${_PR_NUMBER}-debug
124
+ - --load
112
125
- .
113
126
waitFor :
114
127
- " golang-builder"
0 commit comments