mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
10fd0516b9
It's that time of year again! Go 1.11 is released, time to use it. This commit also * removes our archive/tar fork, since upstream archive/tar is fixed for static builds, and osusergo build tag is set. * removes ENV GO_VERSION from Dockerfile as it's not needed anymore since PR #37592 is merged. [v2: switch to beta2] [v3: switch to beta3] [v4: rc1] [v5: remove ENV GO_VERSION as PR #37592 is now merged] [v6: rc2] [v7: final!] [v8: use 1.11.0] [v9: back to 1.11] [v8: use 1.11.0] Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
54 lines
1.5 KiB
Bash
Executable file
54 lines
1.5 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
source "${SCRIPTDIR}/.validate"
|
|
|
|
validate_vendor_diff(){
|
|
IFS=$'\n'
|
|
files=( $(validate_diff --diff-filter=ACMR --name-only -- 'vendor.conf' 'vendor/' || true) )
|
|
unset IFS
|
|
|
|
if [ ${#files[@]} -gt 0 ]; then
|
|
# Remove vendor/ first so that anything not included in vendor.conf will
|
|
# cause the validation to fail.
|
|
ls -d vendor/* | xargs rm -rf
|
|
# run vndr to recreate vendor/
|
|
vndr
|
|
# check if any files have changed
|
|
diffs="$(git status --porcelain -- vendor 2>/dev/null)"
|
|
if [ "$diffs" ]; then
|
|
{
|
|
echo 'The result of vndr differs'
|
|
echo
|
|
echo "$diffs"
|
|
echo
|
|
echo 'Please vendor your package with github.com/LK4D4/vndr.'
|
|
echo
|
|
} >&2
|
|
false
|
|
else
|
|
echo 'Congratulations! All vendoring changes are done the right way.'
|
|
fi
|
|
else
|
|
echo 'No vendor changes in diff.'
|
|
fi
|
|
}
|
|
|
|
# 1. make sure all the vendored packages are used
|
|
# 2. make sure all the packages contain license information (just warning, because it can cause false-positive)
|
|
validate_vendor_used() {
|
|
pkgs=$(mawk '/^[a-zA-Z0-9]/ { print $1 }' < vendor.conf)
|
|
for f in $pkgs; do
|
|
if ls -d vendor/$f > /dev/null 2>&1; then
|
|
found=$(find vendor/$f -iregex '.*LICENSE.*' -or -iregex '.*COPYRIGHT.*' -or -iregex '.*COPYING.*' | wc -l)
|
|
if [ $found -eq 0 ]; then
|
|
echo "WARNING: could not find copyright information for $f"
|
|
fi
|
|
else
|
|
echo "WARNING: $f is vendored but unused"
|
|
fi
|
|
done
|
|
}
|
|
|
|
validate_vendor_diff
|
|
validate_vendor_used
|