File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed
docs/content/docs/getting-started Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 57
57
- name : Build
58
58
id : build
59
59
run : |
60
- go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
61
- go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
60
+ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.64.0
61
+ go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.0
62
62
export PATH=$PATH:$GOPATH/bin
63
63
export PATH=/usr/local/cuda/bin:$PATH
64
64
GO_TAGS=p2p make dist
88
88
run : |
89
89
sudo apt-get update
90
90
sudo apt-get install -y --no-install-recommends libopencv-dev protobuf-compiler ccache
91
- go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
92
- go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
91
+ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.64.0
92
+ go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.0
93
93
- name : Build stablediffusion
94
94
run : |
95
95
export PATH=$PATH:$GOPATH/bin
@@ -122,8 +122,8 @@ jobs:
122
122
- name : Dependencies
123
123
run : |
124
124
brew install protobuf grpc
125
- go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
126
- go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
125
+ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.64.0
126
+ go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.0
127
127
- name : Build
128
128
id : build
129
129
run : |
Original file line number Diff line number Diff line change 93
93
sudo apt-get install -y cuda-nvcc-${CUDA_VERSION} libcublas-dev-${CUDA_VERSION}
94
94
export CUDACXX=/usr/local/cuda/bin/nvcc
95
95
96
- go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
97
- go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
96
+ go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.0
97
+ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.64.0
98
98
99
99
# The python3-grpc-tools package in 22.04 is too old
100
100
pip install --user grpcio-tools
Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ RUN curl -L -s https://go.dev/dl/go${GO_VERSION}.linux-${TARGETARCH}.tar.gz | ta
33
33
ENV PATH $PATH:/root/go/bin:/usr/local/go/bin
34
34
35
35
# Install grpc compilers
36
- RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@latest && \
37
- go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
36
+ RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.0 && \
37
+ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.64.0
38
38
39
39
COPY --chmod=644 custom-ca-certs/* /usr/local/share/ca-certificates/
40
40
RUN update-ca-certificates
Original file line number Diff line number Diff line change @@ -55,8 +55,8 @@ apt install cmake golang libgrpc-dev make protobuf-compiler-grpc python3-grpc-to
55
55
After you have golang installed and working, you can install the required binaries for compiling the golang protobuf components via the following commands
56
56
57
57
``` bash
58
- go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
59
- go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
58
+ go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.0
59
+ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.64.0
60
60
61
61
```
62
62
You can’t perform that action at this time.
0 commit comments