2017-04-06 22:59:41 +00:00
|
|
|
#!/usr/bin/env bash
|
2016-03-18 03:18:16 +00:00
|
|
|
set -e
|
|
|
|
|
2016-12-29 04:33:56 +00:00
|
|
|
# Brings in: ROOT_DIR, EXAMPLES_DIR, LIB_DIR, CODEGEN_DIR, CONTRIB_DIR, DOC_DIR
|
2016-10-02 08:18:37 +00:00
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2017-07-29 04:34:59 +00:00
|
|
|
source "${SCRIPT_DIR}/config.sh"
|
2016-03-18 03:18:16 +00:00
|
|
|
|
2016-08-07 03:59:51 +00:00
|
|
|
# Add Cargo to PATH.
|
|
|
|
export PATH=${HOME}/.cargo/bin:${PATH}
|
|
|
|
|
2016-09-30 03:50:06 +00:00
|
|
|
# Checks that the versions for Cargo projects $@ all match
|
|
|
|
function check_versions_match() {
|
|
|
|
local last_version=""
|
2017-07-29 04:34:59 +00:00
|
|
|
for dir in "${@}"; do
|
2016-09-30 03:50:06 +00:00
|
|
|
local cargo_toml="${dir}/Cargo.toml"
|
|
|
|
if ! [ -f "${cargo_toml}" ]; then
|
|
|
|
echo "Cargo configuration file '${cargo_toml}' does not exist."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2017-07-29 04:34:59 +00:00
|
|
|
local version=$(grep version "${cargo_toml}" | head -n 1 | cut -d' ' -f3)
|
2016-09-30 03:50:06 +00:00
|
|
|
if [ -z "${last_version}" ]; then
|
|
|
|
last_version="${version}"
|
|
|
|
elif ! [ "${version}" = "${last_version}" ]; then
|
|
|
|
echo "Versions differ in '${cargo_toml}'. ${version} != ${last_version}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2017-03-16 02:26:15 +00:00
|
|
|
# Ensures there are no tabs in any file.
|
2016-12-29 04:33:56 +00:00
|
|
|
function ensure_tab_free() {
|
2016-12-29 04:47:15 +00:00
|
|
|
local tab=$(printf '\t')
|
2017-12-28 04:29:36 +00:00
|
|
|
local matches=$(git grep -E -I "${tab}" "${ROOT_DIR}" | egrep -v 'LICENSE')
|
2016-12-29 04:33:56 +00:00
|
|
|
if ! [ -z "${matches}" ]; then
|
|
|
|
echo "Tab characters were found in the following:"
|
|
|
|
echo "${matches}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-03-16 02:26:15 +00:00
|
|
|
# Ensures there are no files with trailing whitespace.
|
|
|
|
function ensure_trailing_whitespace_free() {
|
2017-12-28 04:29:36 +00:00
|
|
|
local matches=$(git grep -E -I "\s+$" "${ROOT_DIR}")
|
2017-03-16 02:26:15 +00:00
|
|
|
if ! [ -z "${matches}" ]; then
|
|
|
|
echo "Trailing whitespace was found in the following:"
|
|
|
|
echo "${matches}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-02-02 08:41:47 +00:00
|
|
|
function bootstrap_examples() {
|
2017-07-29 04:34:59 +00:00
|
|
|
while read -r file; do
|
|
|
|
bootstrap_script="${file}/bootstrap.sh"
|
|
|
|
if [ -x "${bootstrap_script}" ]; then
|
|
|
|
echo " Bootstrapping ${file}..."
|
2017-02-02 08:41:47 +00:00
|
|
|
|
2017-07-29 04:34:59 +00:00
|
|
|
env_vars=$(bash "${bootstrap_script}")
|
|
|
|
bootstrap_result=$?
|
|
|
|
if [ $bootstrap_result -ne 0 ]; then
|
|
|
|
echo " Running bootstrap script (${bootstrap_script}) failed!"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
eval $env_vars
|
2017-02-02 08:41:47 +00:00
|
|
|
fi
|
|
|
|
fi
|
2017-07-29 04:34:59 +00:00
|
|
|
done < <(find "${EXAMPLES_DIR}" -maxdepth 1 -type d)
|
2017-02-02 08:41:47 +00:00
|
|
|
}
|
|
|
|
|
2016-12-29 04:33:56 +00:00
|
|
|
echo ":: Ensuring all crate versions match..."
|
2016-12-12 06:15:15 +00:00
|
|
|
check_versions_match "${LIB_DIR}" "${CODEGEN_DIR}" "${CONTRIB_DIR}"
|
|
|
|
|
2016-12-29 04:33:56 +00:00
|
|
|
echo ":: Checking for tabs..."
|
|
|
|
ensure_tab_free
|
|
|
|
|
2017-03-16 02:26:15 +00:00
|
|
|
echo ":: Checking for trailing whitespace..."
|
|
|
|
ensure_trailing_whitespace_free
|
|
|
|
|
2016-12-12 06:15:15 +00:00
|
|
|
echo ":: Updating dependencies..."
|
2016-09-30 22:39:55 +00:00
|
|
|
cargo update
|
|
|
|
|
2017-07-29 04:34:59 +00:00
|
|
|
echo ":: Bootstrapping examples..."
|
2017-02-02 08:41:47 +00:00
|
|
|
bootstrap_examples
|
2017-01-15 10:33:45 +00:00
|
|
|
|
2016-12-12 06:15:15 +00:00
|
|
|
echo ":: Building and testing libraries..."
|
2018-01-24 02:49:59 +00:00
|
|
|
CARGO_INCREMENTAL=0 cargo test --all-features --all $@
|