sourcegraph/dev/ci/scripts/upload-buildevent-report.sh
Erik Seliger 58fe87f6b5
enterprise: Move last directory out (#57392)
This is the end of the PR train to remove the enterprise directory from out repo since we have consolidated to use a single license.

Bye rough code split :)
2023-10-05 20:15:40 +00:00

12 lines
342 B
Bash
Executable File

#!/usr/bin/env bash
(
BUILDEVENT_APIKEY="$CI_HONEYCOMB_API_KEY"
BUILDEVENT_DATASET="$CI_BUILDEVENT_DATASET"
export BUILDEVENT_APIKEY
export BUILDEVENT_DATASET
traceURL=$(buildevents build "$BUILDKITE_BUILD_ID" "$BUILD_START_TIME" success)
echo "View the [**build trace**]($traceURL)" | ./dev/ci/scripts/annotate.sh -m -t info
)