APIGOV-26106 - update golang to 1.21.0 #600
Workflow file for this run
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: Build Apigee Discovery Agent | |
on: | |
push: | |
branches: [main, "*"] | |
jobs: | |
testDiscoveryAgent: | |
env: | |
GOFLAGS: "-mod=mod" | |
GOWORK: "off" | |
defaults: | |
run: | |
working-directory: ${{ env.GOPATH }}/discovery | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- name: Test discovery agent | |
working-directory: discovery | |
run: go test -race -v ./... | |
buildDiscoveryAgent: | |
env: | |
GOFLAGS: "-mod=mod" | |
GOWORK: "off" | |
defaults: | |
run: | |
working-directory: ${{ env.GOPATH }}/discovery | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- name: Build discovery agent | |
working-directory: discovery | |
run: | | |
git fetch --all --tags --quiet | |
git branch --show-current > commit_id | |
git tag -l --sort='version:refname' | grep -Eo '[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,3}$' | tail -1 > version | |
make build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: apigee_discovery_agent | |
path: discovery/bin/apigee_discovery_agent |