2015-08-10 20:49:46 +00:00
|
|
|
#!/usr/bin/env bash
|
2013-01-15 02:31:50 +00:00
|
|
|
###| Builder Script |###
|
2015-03-09 01:40:01 +00:00
|
|
|
#
|
2013-01-15 02:31:50 +00:00
|
|
|
# Builds all permutations of modules
|
|
|
|
# This script is an attempt to maintain module sanity as new ones are added
|
|
|
|
#
|
|
|
|
# Fortunately, sweeping API changes don't happen much anymore...but just in case...
|
|
|
|
#
|
|
|
|
# Written by Jacob Alexander 2013 for the Kiibohd Controller
|
|
|
|
# Released into the Public Domain
|
|
|
|
#
|
|
|
|
###
|
|
|
|
|
|
|
|
## TODO List ##
|
|
|
|
# - Complete non-Scan module permutations (will take extra work)
|
|
|
|
# - Add command line arguments
|
|
|
|
# - Add help flag for usage
|
|
|
|
# - Make sure the script is being run from the correct directory
|
|
|
|
|
|
|
|
|
|
|
|
main() {
|
|
|
|
ERROR="\e[5;1;31mERROR\e[0m:"
|
|
|
|
failCount=0
|
|
|
|
|
|
|
|
# Scan for list of Scan Modules
|
|
|
|
scanModules=$(ls Scan)
|
|
|
|
|
|
|
|
# Prune out "invalid" modules (parent modules)
|
|
|
|
scanModules=${scanModules[@]//matrix/}
|
|
|
|
|
|
|
|
# Create permutation directories
|
|
|
|
# Then run cmake, and run each build permutation
|
|
|
|
# Keeping track of how many builds failed/passed
|
2016-02-07 02:06:08 +00:00
|
|
|
for mod in $scanModules; do
|
|
|
|
module=$(tr -dc "[:print:]" <<< "$mod")
|
2013-01-15 02:31:50 +00:00
|
|
|
# Create directory, but do not error if it exists already
|
|
|
|
mkdir -p build/$module
|
|
|
|
cd build/$module
|
|
|
|
|
|
|
|
# Make sure CMake has been run, and attempt to build
|
|
|
|
cmake -DScanModuleOverride=$module ../.. && make || let failCount++
|
|
|
|
|
|
|
|
# Cleanup, for the next build
|
2013-01-26 09:34:33 +00:00
|
|
|
cd - > /dev/null
|
2013-01-15 02:31:50 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
totalModules=$(echo $scanModules | wc -w)
|
|
|
|
if (( failCount > 0 )); then
|
|
|
|
echo -e "$ERROR $failCount/$totalModules failed"
|
|
|
|
else
|
|
|
|
echo -e "Build Success!"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#| Main Script Entry
|
|
|
|
main "$@"
|
|
|
|
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
|