Update go and protobuf versions (#25) #169
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: | |
push: | |
branches: [ v2 ] | |
pull_request: | |
branches: [ v2 ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.22 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
- name: Install proto-deps | |
run: make install-proto-deps | |
# - name: Install protoc-gen-go | |
# run: go install google.golang.org/protobuf/cmd/protoc-gen-go | |
# - name: Install protoc-gen-go-grpc | |
# run: go install google.golang.org/grpc/cmd/protoc-gen-go-grpc | |
- name: Static analysis of code for errors | |
run: make analyze | |
# - name: Build | |
# run: go build -v ./... | |
- name: Build | |
run: make build | |
- name: Test - go test | |
env: | |
PM_CONF_FILE: ${{ github.workspace }}/sample/pm.config.yaml | |
INTEGRATION_TEST: START | |
INTEG_TEST_BIN: ${{ github.workspace }} | |
GOCOVERDIR: ${{ github.workspace }}/cover | |
run: | | |
mkdir -p ${{ github.workspace }}/cover | |
go test -mod=vendor -v ./... | |
# - name: Test - make test | |
# env: | |
# TOP: ${{ github.workspace }} | |
# GOSRC: ${{ github.workspace }} | |
# GOCOVER: ${{ github.workspace }}/cover | |
# GOTOOLSBIN: ${{ github.workspace }}/tools/go | |
# run: make test | |
# - name: Test - contents of make test! | |
# run: | | |
# set -x | |
# echo "Running Plugin Manager Go Unit Tests..."; | |
# GOSRC=${{ github.workspace }} | |
# GOCOVER=${{ github.workspace }}/cover | |
# TOOLSBIN=${{ github.workspace }}/tools | |
# GOTOOLSBIN=${{ github.workspace }}/tools/go | |
# mkdir -p ${GOCOVER}; | |
# export INTEG_TEST_BIN=${GOSRC}; | |
# mkdir -p ${INTEG_TEST_BIN}; | |
# export PM_CONF_FILE=${GOSRC}/sample/pm.config.yaml; | |
# export INTEGRATION_TEST=START; | |
# cd ${GOSRC}; | |
# test_failed=0; | |
# d=pm; | |
# go test -mod=vendor -v --cover -covermode=count -coverprofile=${GOCOVER}/${d}.out ./... | ${GOTOOLSBIN}/go-junit-report > TEST-${d}.xml; | |
# ret=${PIPESTATUS[0]}; | |
# if [ ${ret} -ne 0 ]; then | |
# echo "Go unit test failed for ${d}."; | |
# test_failed=1; | |
# fi ; | |
# cat TEST-${d}.xml | |
# awk -f ${TOOLSBIN}/gocoverage-collate.awk ${GOCOVER}/* > ${GOCOVER}/cover.out; | |
# go tool cover -html=${GOCOVER}/cover.out -o go-coverage-${d}.html; | |
# ${GOTOOLSBIN}/gocov convert ${GOCOVER}/cover.out | ${GOTOOLSBIN}/gocov-xml > go-coverage-${d}.xml; | |
# rm -rf ${GOCOVER}/*; | |
# export INTEGRATION_TEST=DONE; | |
# if [ ${test_failed} -ne 0 ]; then | |
# echo "Go unit tests failed."; | |
# exit 1; | |
# fi |