Skip to content

Commit afe16f1

Browse files
committed
try again
1 parent 56fed82 commit afe16f1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/assertion.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ on:
2222

2323
jobs:
2424
build-assertion-document:
25+
name: Build and Generate Assertion Document
2526
runs-on: ubuntu-22.04
2627
if: ${{ !github.event.pull_request.head.repo.fork }}
2728
permissions:
@@ -49,7 +50,10 @@ jobs:
4950
run: |
5051
GO_VERSION=$(go version | awk '{print $3}' | sed 's/go//')
5152
echo "GO_VERSION=$GO_VERSION" >> $GITHUB_ENV
53+
time_start=$(date +%s)
5254
OSARCH=${{matrix.osarch}} make build
55+
time_end=$(date +%s)
56+
echo "Build time: $((time_end - time_start)) seconds"
5357
5458
echo "Getting sha256sum of the built nginx-agent binary..."
5559
echo "agent-digest=$(sha256sum build/nginx-agent | awk '{print $1}')" >> $GITHUB_ENV
@@ -74,7 +78,7 @@ jobs:
7478
artifactory-url: ${{ secrets.ARTIFACTORY_URL }}
7579
artifactory-repo: 'f5-nginx-go-local-approved-dependency'
7680
assertion-doc-file: assertion_nginx-agent_test_${{matrix.osarch}}.json
77-
build-content-path: ${{ steps.godeps.outputs.goversionm }}
81+
build-content-path: ${{ env.goversionm }}
7882
started-on: ''
7983
finished-on: ''
8084

0 commit comments

Comments
 (0)