Skip to content

Commit 96327b7

Browse files
authored
Add diagnostic output to dra workflow scripts (#114973) (#114974)
1 parent 23fe866 commit 96327b7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.buildkite/scripts/dra-workflow.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,18 @@ if [[ "$BRANCH" == "main" ]]; then
2222
fi
2323

2424
ES_VERSION=$(grep elasticsearch build-tools-internal/version.properties | sed "s/elasticsearch *= *//g")
25+
echo "ES_VERSION=$ES_VERSION"
2526

2627
VERSION_SUFFIX=""
2728
if [[ "$WORKFLOW" == "snapshot" ]]; then
2829
VERSION_SUFFIX="-SNAPSHOT"
2930
fi
3031

3132
BEATS_BUILD_ID="$(./.ci/scripts/resolve-dra-manifest.sh beats "$RM_BRANCH" "$ES_VERSION" "$WORKFLOW")"
33+
echo "BEATS_BUILD_ID=$BEATS_BUILD_ID"
34+
3235
ML_CPP_BUILD_ID="$(./.ci/scripts/resolve-dra-manifest.sh ml-cpp "$RM_BRANCH" "$ES_VERSION" "$WORKFLOW")"
36+
echo "ML_CPP_BUILD_ID=$ML_CPP_BUILD_ID"
3337

3438
LICENSE_KEY_ARG=""
3539
BUILD_SNAPSHOT_ARG=""

0 commit comments

Comments
 (0)