File tree 1 file changed +8
-1
lines changed 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 39
39
run : echo "::add-path:$GITHUB_WORKSPACE/quicklisp/local-projects/cl-protobufs/protoc/"
40
40
41
41
- name : Download and install protobuf
42
- run : git clone --recursive https://github.com/google/protobuf $GITHUB_WORKSPACE/protobuf && cd $GITHUB_WORKSPACE/protobuf && ./autogen.sh && ./configure --prefix=/usr/local && make && sudo make install && sudo ldconfig
42
+ run : |
43
+ set -ex
44
+ git clone --recursive https://github.com/google/protobuf $GITHUB_WORKSPACE/protobuf
45
+ cd $GITHUB_WORKSPACE/protobuf
46
+ cmake . -Dprotobuf_WITH_ZLIB=OFF -Dprotobuf_BUILD_CONFORMANCE=OFF -Dprotobuf_BUILD_EXAMPLES=OFF -DCMAKE_CXX_STANDARD=14
47
+ make -j20
48
+ sudo make install
49
+ sudo ldconfig
43
50
44
51
- name : Install protoc plug-in
45
52
run : cd $GITHUB_WORKSPACE/quicklisp/local-projects/cl-protobufs/protoc && PROTOC_ROOT=/usr/local make
You can’t perform that action at this time.
0 commit comments