Allowlist for APGL crates in check-licenses
(#24998)
Also makes `shellcheck` pass Release Notes: - N/A
This commit is contained in:
parent
3b5dad8a9d
commit
91c99baaf2
1 changed files with 30 additions and 7 deletions
|
@ -3,18 +3,41 @@
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
check_license () {
|
check_license () {
|
||||||
for license in "LICENSE-AGPL" "LICENSE-GPL" "LICENSE-APACHE"; do
|
local dir="$1"
|
||||||
if [[ -L "$1/$license" ]]; then
|
local allowed_licenses=()
|
||||||
|
local agpl_crates=("crates/collab" "crates/livekit_api")
|
||||||
|
|
||||||
|
local is_agpl=false
|
||||||
|
for agpl_crate in "${agpl_crates[@]}"; do
|
||||||
|
if [[ "$dir" == "$agpl_crate" ]]; then
|
||||||
|
is_agpl=true
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ "$is_agpl" == true ]]; then
|
||||||
|
allowed_licenses=("LICENSE-AGPL")
|
||||||
|
else
|
||||||
|
allowed_licenses=("LICENSE-GPL" "LICENSE-APACHE")
|
||||||
|
fi
|
||||||
|
|
||||||
|
for license in "${allowed_licenses[@]}"; do
|
||||||
|
if [[ -L "$dir/$license" ]]; then
|
||||||
return 0
|
return 0
|
||||||
elif [[ -e "$1/$license" ]]; then
|
elif [[ -e "$dir/$license" ]]; then
|
||||||
echo "Error: $1/$license exists but is not a symlink."
|
echo "Error: $dir/$license exists but is not a symlink."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
echo "Error: $1 does not contain a license symlink"
|
|
||||||
|
if [[ "$dir" == "crates/collab" ]]; then
|
||||||
|
echo "Error: $dir does not contain a LICENSE-AGPL symlink"
|
||||||
|
else
|
||||||
|
echo "Error: $dir does not contain a LICENSE-GPL or LICENSE-APACHE symlink"
|
||||||
|
fi
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
git ls-files **/*/Cargo.toml | while read cargo_toml; do
|
git ls-files "**/*/Cargo.toml" | while read -r cargo_toml; do
|
||||||
check_license $(dirname "$cargo_toml");
|
check_license "$(dirname "$cargo_toml")"
|
||||||
done
|
done
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue