mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:11:48 +00:00
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 :)
12 lines
342 B
Bash
Executable File
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
|
|
)
|