bring build files from header branch
This commit is contained in:
parent
d93fe2ee8d
commit
031c3bfe4e
2 changed files with 45 additions and 0 deletions
13
.github/workflows/build-short.yml
vendored
Normal file
13
.github/workflows/build-short.yml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name: 'Build Hub'
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-go@v2.1.3
|
||||||
|
with:
|
||||||
|
go-version: 1.16.5
|
||||||
|
- run: go build .
|
32
.github/workflows/build.yml
vendored
Normal file
32
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
name: 'Build Hub'
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-go@v2.1.3
|
||||||
|
with:
|
||||||
|
go-version: 1.16.5
|
||||||
|
- run: |
|
||||||
|
sudo apt update && \
|
||||||
|
sudo apt upgrade && \
|
||||||
|
sudo apt-get install autoconf automake libtool curl make g++ unzip && \
|
||||||
|
cd /tmp && \
|
||||||
|
wget https://github.com/protocolbuffers/protobuf/releases/download/v3.17.1/protobuf-all-3.17.1.tar.gz && \
|
||||||
|
tar xfzv protobuf-all-3.17.1.tar.gz && \
|
||||||
|
cd protobuf-3.17.1 && \
|
||||||
|
./autogen.sh && \
|
||||||
|
./configure && \
|
||||||
|
make && \
|
||||||
|
sudo make install && \
|
||||||
|
sudo ldconfig && \
|
||||||
|
cd
|
||||||
|
- run: pip install grpcio grpcio-tools github3.py
|
||||||
|
- run: go get github.com/golang/protobuf/protoc-gen-go google.golang.org/grpc/cmd/protoc-gen-go-grpc
|
||||||
|
- run: go build .
|
||||||
|
- run: ./protobuf/build.sh
|
Loading…
Reference in a new issue