2021-12-15 17:07:11 +01:00
#!/usr/bin/env bash
2022-01-20 10:20:32 +01:00
# Find package directories
PACKAGES = $( ls -d ./packages/*/)
2021-12-15 17:07:11 +01:00
EXIT_CODE = 0
GITHUB_MESSAGE = ""
2022-01-03 12:48:12 +01:00
# Loop through the packages
2022-01-20 10:20:32 +01:00
while IFS = " " read -r -a package; do
2021-12-15 17:07:11 +01:00
2022-01-20 10:20:32 +01:00
# shellcheck disable=SC2128
PACKAGE_PATH = $( basename " $package " )
2021-12-15 17:07:11 +01:00
# Calculate current and previous package paths / names
2022-08-11 15:17:51 +02:00
PREV = "./base/ $PACKAGE_PATH "
CURRENT = "./pr/ $PACKAGE_PATH "
2021-12-15 17:07:11 +01:00
2022-01-20 10:20:32 +01:00
# Temporarily skipping these packages as they don't have any exposed static typing
2023-01-18 15:02:35 +00:00
if [[ " $PACKAGE_PATH " == 'grafana-toolkit' || " $PACKAGE_PATH " == 'jaeger-ui-components' || " $PACKAGE_PATH " == 'grafana-eslint-rules' ]] ; then
2021-12-15 17:07:11 +01:00
continue
fi
2022-08-11 15:17:51 +02:00
# Extract the npm package tarballs into separate directories e.g. ./base/@grafana-data.tgz -> ./base/grafana-data/
2022-08-11 16:13:41 +01:00
mkdir " $PREV "
tar -xf "./base/@ $PACKAGE_PATH .tgz" --strip-components= 1 -C " $PREV "
mkdir " $CURRENT "
tar -xf "./pr/@ $PACKAGE_PATH .tgz" --strip-components= 1 -C " $CURRENT "
2022-08-11 15:17:51 +02:00
2021-12-15 17:07:11 +01:00
# Run the comparison and record the exit code
echo ""
echo ""
2022-01-20 10:20:32 +01:00
echo " ${ PACKAGE_PATH } "
2021-12-15 17:07:11 +01:00
echo "================================================="
2022-02-01 09:18:21 +01:00
npm exec -- @grafana/levitate compare --prev " $PREV " --current " $CURRENT "
2021-12-15 17:07:11 +01:00
# Check if the comparison returned with a non-zero exit code
# Record the output, maybe with some additional information
STATUS = $?
# Final exit code
# (non-zero if any of the packages failed the checks)
if [ $STATUS -gt 0 ]
then
EXIT_CODE = 1
2022-01-20 10:20:32 +01:00
GITHUB_MESSAGE = " ${ GITHUB_MESSAGE } **\\\` ${ PACKAGE_PATH } \\\`** has possible breaking changes ([more info]( ${ GITHUB_JOB_LINK } #step: ${ GITHUB_STEP_NUMBER } :1))<br />"
fi
2021-12-15 17:07:11 +01:00
done <<< " $PACKAGES "
# "Export" the message to an environment variable that can be used across Github Actions steps
2022-11-10 12:02:04 +01:00
echo "is_breaking= $EXIT_CODE " >> " $GITHUB_OUTPUT "
echo "message= $GITHUB_MESSAGE " >> " $GITHUB_OUTPUT "
2021-12-15 17:07:11 +01:00
# We will exit the workflow accordingly at another step
2022-08-11 16:13:41 +01:00
exit 0