File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 22
22
23
23
jobs :
24
24
build-assertion-document :
25
+ name : Build and Generate Assertion Document
25
26
runs-on : ubuntu-22.04
26
27
if : ${{ !github.event.pull_request.head.repo.fork }}
27
28
permissions :
49
50
run : |
50
51
GO_VERSION=$(go version | awk '{print $3}' | sed 's/go//')
51
52
echo "GO_VERSION=$GO_VERSION" >> $GITHUB_ENV
53
+ time_start=$(date +%s)
52
54
OSARCH=${{matrix.osarch}} make build
55
+ time_end=$(date +%s)
56
+ echo "Build time: $((time_end - time_start)) seconds"
53
57
54
58
echo "Getting sha256sum of the built nginx-agent binary..."
55
59
echo "agent-digest=$(sha256sum build/nginx-agent | awk '{print $1}')" >> $GITHUB_ENV
74
78
artifactory-url : ${{ secrets.ARTIFACTORY_URL }}
75
7
5C4E
9
artifactory-repo : ' f5-nginx-go-local-approved-dependency'
76
80
assertion-doc-file : assertion_nginx-agent_test_${{matrix.osarch}}.json
77
- build-content-path : ${{ steps.godeps.outputs .goversionm }}
81
+ build-content-path : ${{ env .goversionm }}
78
82
started-on : ' '
79
83
finished-on : ' '
80
84
You can’t perform that action at this time.
0 commit comments