File tree Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -193,17 +193,6 @@ jobs:
193
193
- name : Install node_modules
194
194
run : ./scripts/yarn_install.sh
195
195
196
- - name : Install Protoc
197
- run : |
198
- # protoc must be in lockstep with our dogfood Dockerfile
199
- # or the version in the comments will differ.
200
- set -x
201
- cd dogfood
202
- DOCKER_BUILDKIT=1 docker build . --target proto -t protoc
203
- protoc_path=/usr/local/bin/protoc
204
- docker run --rm --entrypoint cat protoc /tmp/bin/protoc > $protoc_path
205
- chmod +x $protoc_path
206
- protoc --version
207
196
- uses : actions/setup-go@v3
208
197
with :
209
198
go-version : " ~1.19"
@@ -236,6 +225,18 @@ jobs:
236
225
- name : Install goimports
237
226
run : go install golang.org/x/tools/cmd/goimports@latest
238
227
228
+ - name : Install Protoc
229
+ run : |
230
+ # protoc must be in lockstep with our dogfood Dockerfile
231
+ # or the version in the comments will differ.
232
+ set -x
233
+ cd dogfood
234
+ DOCKER_BUILDKIT=1 docker build . --target proto -t protoc
235
+ protoc_path=/usr/local/bin/protoc
236
+ docker run --rm --entrypoint cat protoc /tmp/bin/protoc > $protoc_path
237
+ chmod +x $protoc_path
238
+ protoc --version
239
+
239
240
- name : make gen
240
241
run : " make --output-sync -j -B gen"
241
242
You can’t perform that action at this time.
0 commit comments