You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.4 KiB
Bash

9 years ago
#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2015-11-05 23:29:15 +0000 (Thu, 05 Nov 2015)
#
# https://github.com/harisekhon/bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help improve or steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
9 years ago
#
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
9 years ago
srcdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
9 years ago
. "$srcdir/utils.sh"
section "Running Bash Tools ALL"
9 years ago
# do help afterwards for Spark to be downloaded, and then help will find and use downloaded spark for SPARK_HOME
#"$srcdir/help.sh"
8 years ago
# this is usually run after build, no point testing again
#. "$srcdir/check_gradle_build.sh"
8 years ago
. "$srcdir/check_makefile.sh"
9 years ago
8 years ago
# this is usually run after build, no point testing again
#. "$srcdir/check_maven_pom.sh"
8 years ago
8 years ago
. "$srcdir/check_perl_syntax.sh"
8 years ago
8 years ago
. "$srcdir/check_ruby_syntax.sh"
8 years ago
. "$srcdir/python_compile.sh"
8 years ago
8 years ago
. "$srcdir/python_find_quit.sh"
8 years ago
8 years ago
. "$srcdir/pylint.sh"
8 years ago
8 years ago
#"$srcdir/python3.sh"
8 years ago
# this is usually run after build, no point testing again
#. "$srcdir/check_sbt_build.sh"
8 years ago
8 years ago
. "$srcdir/check_shell_syntax.sh"
9 years ago
8 years ago
. "$srcdir/check_travis_yml.sh"
9 years ago
8 years ago
"$srcdir/whitespace.sh"
8 years ago
#for script in $(find . -name 'test*.sh'); do
# "$srcdir/$script" -vvv
#done
9 years ago
section "Bash Tools All Checks Completed"