mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-10-31 20:41:22 +00:00
41 lines
1.0 KiB
Bash
Executable File
41 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
source hack/bazel_setup.sh
|
|
|
|
bazel_bin="$(which bazel)"
|
|
workspace_dir="$(pwd)"
|
|
|
|
$BAZEL_B //:bazel-diff
|
|
|
|
# Fetch all refs
|
|
git fetch --all
|
|
|
|
# Starting point
|
|
STARTING_COMMIT="$(git rev-parse HEAD)"
|
|
|
|
# Find base and target hash
|
|
BASE_HASH="$PULL_BASE_SHA"
|
|
TARGET_HASH="$PULL_PULL_SHA"
|
|
if [[ -z "$TARGET_HASH" ]]; then
|
|
BASE_HASH="$(git log "HEAD~" --pretty=format:"%H" --merges -n 1)"
|
|
TARGET_HASH="$PULL_BASE_SHA"
|
|
fi
|
|
|
|
# Generate starting hashes
|
|
echo "Base hash is $BASE_HASH"
|
|
git checkout "$BASE_HASH" --quiet
|
|
bazel-bin/bazel-diff generate-hashes -w "$workspace_dir" -b "$bazel_bin" starting_hashes_json
|
|
|
|
# Generate ending hashes
|
|
echo "Target hash is $TARGET_HASH"
|
|
git checkout "$TARGET_HASH" --quiet
|
|
bazel-bin/bazel-diff generate-hashes -w "$workspace_dir" -b "$bazel_bin" ending_hashes_json
|
|
|
|
# Get impacted targets
|
|
bazel-bin/bazel-diff get-impacted-targets -sh starting_hashes_json -fh ending_hashes_json -o impacted_targets
|
|
|
|
# Checkout back to starting commit
|
|
git checkout "$STARTING_COMMIT" --quiet
|