]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - util/travis_build.sh
Fix build detection of keymap and board changes
[qmk_firmware.git] / util / travis_build.sh
index a25d871e2df8fe416b3009821154733c0e7a56a2..2c6c62931fec1522335ecf5b63d58d8e88b4346e 100755 (executable)
@@ -17,16 +17,18 @@ if [[ "$TRAVIS_COMMIT_MESSAGE" != *"[skip build]"* ]] ; then
        else
                NEFM=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -Ev '^(keyboards/)'  | grep -Ev '^(docs/)' | wc -l)
                BRANCH=$(git rev-parse --abbrev-ref HEAD)
+               # is this branch master or a "non docs, non keyboards" change 
                if [ $NEFM -gt 0 -o "$BRANCH" = "master" ]; then
                        echo "Making default keymaps for all keyboards"
                        eval $MAKE_ALL
                        : $((exit_code = $exit_code + $?))
                else
-                       MKB=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -oP '(?<=keyboards\/)([a-zA-Z0-9_\/]+)(?=\/)' | sort -u)
+                   # keyboards project format
+                       #  /keyboards/board1/rev/keymaps/
+                       #  /keyboards/board2/keymaps/
+                       # ensure we strip everything off after and including the keymaps folder to get board and/or revision
+                       MKB=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -oP '(?<=keyboards\/)([a-zA-Z0-9_\/]+)(?=\/)' | sed 's^/keymaps/.*^^' | sort -u)
                        for KB in $MKB ; do
-                               if [[ $KB == *keymaps* ]]; then
-                                       continue
-                               fi
                                KEYMAP_ONLY=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -Ev '^(keyboards/'${KB}'/keymaps/)' | wc -l)
                                if [[ $KEYMAP_ONLY -gt 0 ]]; then
                                        echo "Making all keymaps for $KB"