Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Discover .git-commit from environment #1418

Merged
merged 1 commit into from
Sep 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion build-tools/bin/archivebuild-wrapper
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,12 @@

# This file is for Amazon internal build processes

git rev-parse HEAD > .git-commit
HEAD_COMMIT="${BRAZIL_PACKAGE_CHANGE_ID:-$(git rev-parse HEAD)}"

if [ "${HEAD_COMMIT}" = "" ]; then
echo >&2 "could not determine HEAD commit"
exit 1
fi

echo "${HEAD_COMMIT}" > .git-commit
archivebuild