651b968736
As part of linters run, check that zuul.d/projects.yaml is sorted alphabetically. Reorder the few projects that are not. Change-Id: I5ddb8f3ad70c47690534eaba9671a80da5dfd905
25 lines
598 B
Bash
Executable File
25 lines
598 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
# It checks that projects.yaml alphabetized and prints list of projects that
|
|
# should be sorted.
|
|
|
|
export TMPDIR=`/bin/mktemp -d`
|
|
trap "rm -rf $TMPDIR" EXIT
|
|
|
|
pushd $TMPDIR
|
|
PROJECTS_LIST=$OLDPWD/zuul.d/projects.yaml
|
|
|
|
grep name: $PROJECTS_LIST |sed -e 's/^ *name: //' > projects_list
|
|
|
|
LC_ALL=C sort --ignore-case projects_list -o projects_list.sorted
|
|
|
|
if ! diff projects_list projects_list.sorted > projects_list.diff; then
|
|
echo "The following projects should be alphabetized: "
|
|
cat projects_list.diff | grep -e '> '
|
|
exit 1
|
|
else
|
|
echo "Projects alphabetized."
|
|
fi
|
|
|
|
popd
|