forked from digital-asset/daml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Collect build-event-stream (digital-asset#9831)
* Generate Bazel logs and upload to GCS changelog_begin changelog_end * Move git_*_sha into variables template Co-authored-by: Andreas Herrmann <andreas.herrmann@tweag.io>
- Loading branch information
1 parent
26e199a
commit 630d021
Showing
5 changed files
with
140 additions
and
20 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Copyright (c) 2021 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
variables: | ||
- name: pipeline_timestamp | ||
value: $[ format('{0:yyyy}-{0:MM}-{0:dd}T{0:HH}:{0:mm}:{0:ss}.{0:fffffff}', pipeline.startTime) ] | ||
- name: pipeline_id | ||
value: $(pipeline_timestamp)-$(System.JobDisplayName)-$(System.JobId)-$(System.JobAttempt) | ||
- name: git_branch_sha | ||
value: $[ dependencies.git_sha.outputs['out.branch'] ] | ||
- name: git_main_sha | ||
value: $[ dependencies.git_sha.outputs['out.main'] ] | ||
- name: git_fork_point_sha | ||
value: $[ dependencies.git_sha.outputs['out.fork_point'] ] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Copyright (c) 2021 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
steps: | ||
- template: bash-lib.yml | ||
parameters: | ||
var_name: bash_lib | ||
- bash: | | ||
set -euo pipefail | ||
if [[ $(Agent.OS) = Windows* ]]; then | ||
export PATH="$PATH:$(cygpath "$(powershell "./dev-env/windows/bin/dadew.ps1 enable >\$2; dadew where")/scoop/shims")" | ||
else | ||
eval "$(dev-env/bin/dade assist)" | ||
fi | ||
source $(bash_lib) | ||
jq -nc >job-md.json '{ | ||
timestamp: "$(pipeline_timestamp)", | ||
id: "$(pipeline_id)", | ||
agent_id: "$(Agent.Id)", | ||
agent_job_name: "$(Agent.JobName)", | ||
agent_machine_name: "$(Agent.MachineName)", | ||
agent_name: "$(Agent.Name)", | ||
agent_os: "$(Agent.OS)", | ||
agent_os_architecture: "$(Agent.OSArchitecture)", | ||
build_build_id: "$(Build.BuildId)", | ||
build_build_number: "$(Build.BuildNumber)", | ||
build_definition_name: "$(Build.DefinitionName)", | ||
build_source_branch: "$(Build.SourceBranch)", | ||
build_source_branch_name: "$(Build.SourceBranchName)", | ||
build_source_version: "$(Build.SourceVersion)", | ||
system_job_attempt: "$(System.JobAttempt)", | ||
system_job_display_name: "$(System.JobDisplayName)", | ||
system_job_id: "$(System.JobId)", | ||
system_job_name: "$(System.JobName)", | ||
system_pullRequest_pullRequestId: "'"${SYSTEM_PULLREQUEST_PULLREQUESTID:-}"'", | ||
system_pullRequest_pullRequestNumber: "'"${SYSTEM_PULLREQUEST_PULLREQUESTNUMBER:-}"'", | ||
system_pullRequest_mergedAt: "'"${SYSTEM_PULLREQUEST_MERGEDAT:-}"'", | ||
system_pullRequest_sourceBranch: "'"${SYSTEM_PULLREQUEST_SOURCEBRANCH:-}"'", | ||
system_pullRequest_targetBranch: "'"${SYSTEM_PULLREQUEST_TARGETBRANCH:-}"'", | ||
system_pullRequest_sourceRepositoryUri: "'"${SYSTEM_PULLREQUEST_SOURCEREPOSITORYURI:-}"'", | ||
system_pullRequest_sourceCommitId: "'"${SYSTEM_PULLREQUEST_SOURCECOMMITID:-}"'", | ||
git_branch_sha: "$(git_branch_sha)", | ||
git_main_sha: "$(git_main_sha)", | ||
git_fork_point: "$(git_fork_point_sha)", | ||
git_current_branch: "'"$(git branch --show-current)"'", | ||
git_current_commit: "'"$(git rev-parse HEAD)"'", | ||
git_current_tree: "'"$(git rev-parse HEAD:./)"'", | ||
}' | ||
jq <job-md.json . | ||
gcs "$GCRED" cp "job-md.json" "gs://daml-data/bazel-metrics/$(pipeline_id)/job-md.json" | ||
[[ -f "build-profile.json" ]] && gcs "$GCRED" cp "build-profile.json" "gs://daml-data/bazel-metrics/$(pipeline_id)/build-profile.json" || echo "build-profile.json not found" | ||
[[ -f "build-events.json" ]] && gcs "$GCRED" cp "build-events.json" "gs://daml-data/bazel-metrics/$(pipeline_id)/build-events.json" || echo "build-events.json not found" | ||
[[ -f "test-profile.json" ]] && gcs "$GCRED" cp "test-profile.json" "gs://daml-data/bazel-metrics/$(pipeline_id)/test-profile.json" || echo "test-profile.json not found" | ||
[[ -f "test-events.json" ]] && gcs "$GCRED" cp "test-events.json" "gs://daml-data/bazel-metrics/$(pipeline_id)/test-events.json" || echo "test-events.json not found" | ||
condition: succeededOrFailed() | ||
displayName: 'Upload Bazel metrics' | ||
env: | ||
GCRED: $(GOOGLE_APPLICATION_CREDENTIALS_CONTENT) |