aboutsummaryrefslogtreecommitdiff
path: root/util/travis_build.sh
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-10-14 11:32:19 -1000
committerGitHub <noreply@github.com>2017-10-14 11:32:19 -1000
commit800ec55dfca06b4630acf62cbb5f130c4031e4f1 (patch)
tree718e43d976bc71627558b5f9e1b657e8a64e4131 /util/travis_build.sh
parente5dc2253e26a105a11e0fad3e4e39c306e49cc92 (diff)
downloadqmk_firmware-800ec55dfca06b4630acf62cbb5f130c4031e4f1.tar.gz
qmk_firmware-800ec55dfca06b4630acf62cbb5f130c4031e4f1.zip
Make arguments redo, subproject elimination (#1784)
* redo make args to use colons, better folder structuring system [skip ci] * don't put spaces after statements - hard lessons in makefile development * fix-up some other rules.mk * give travis a chance * reset KEYMAPS variable * start converting keyboards to new system * try making all with travis * redo make args to use colons, better folder structuring system [skip ci] * don't put spaces after statements - hard lessons in makefile development * fix-up some other rules.mk * give travis a chance * reset KEYMAPS variable * start converting keyboards to new system * try making all with travis * start to update readmes and keyboards * look in keyboard directories for board.mk * update visualizer rules * fix up some other keyboards/keymaps * fix arm board ld includes * fix board rules * fix up remaining keyboards * reset layout variable * reset keyboard_layouts * fix remainging keymaps/boards * update readmes, docs * add note to makefile error * update readmes * remove planck keymap warnings * update references and docs * test out tarvis build stages * don't use stages for now * don't use stages for now
Diffstat (limited to 'util/travis_build.sh')
-rw-r--r--util/travis_build.sh11
1 files changed, 7 insertions, 4 deletions
diff --git a/util/travis_build.sh b/util/travis_build.sh
index 3243447ab..87a543370 100644
--- a/util/travis_build.sh
+++ b/util/travis_build.sh
@@ -9,21 +9,24 @@ if [[ "$TRAVIS_COMMIT_MESSAGE" != *"[skip build]"* ]] ; then
9 BRANCH=$(git rev-parse --abbrev-ref HEAD) 9 BRANCH=$(git rev-parse --abbrev-ref HEAD)
10 if [ $NEFM -gt 0 -o "$BRANCH" = "master" ]; then 10 if [ $NEFM -gt 0 -o "$BRANCH" = "master" ]; then
11 echo "Making all keymaps for all keyboards" 11 echo "Making all keymaps for all keyboards"
12 make all-keyboards AUTOGEN="true" 12 make all:all AUTOGEN="true"
13 : $((exit_code = $exit_code + $?)) 13 : $((exit_code = $exit_code + $?))
14 else 14 else
15 MKB=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -oP '(?<=keyboards\/)([a-zA-Z0-9_]+)(?=\/)' | sort -u) 15 MKB=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -oP '(?<=keyboards\/)([a-zA-Z0-9_\/]+)(?=\/)' | sort -u)
16 for KB in $MKB ; do 16 for KB in $MKB ; do
17 if [[ $KB == *keymaps* ]]; then
18 continue
19 fi
17 KEYMAP_ONLY=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -Ev '^(keyboards/'${KB}'/keymaps/)' | wc -l) 20 KEYMAP_ONLY=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -Ev '^(keyboards/'${KB}'/keymaps/)' | wc -l)
18 if [[ $KEYMAP_ONLY -gt 0 ]]; then 21 if [[ $KEYMAP_ONLY -gt 0 ]]; then
19 echo "Making all keymaps for $KB" 22 echo "Making all keymaps for $KB"
20 make ${KB}-allsp-allkm AUTOGEN=true 23 make ${KB}:all AUTOGEN=true
21 : $((exit_code = $exit_code + $?)) 24 : $((exit_code = $exit_code + $?))
22 else 25 else
23 MKM=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -oP '(?<=keyboards/'${KB}'/keymaps/)([a-zA-Z0-9_]+)(?=\/)' | sort -u) 26 MKM=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -oP '(?<=keyboards/'${KB}'/keymaps/)([a-zA-Z0-9_]+)(?=\/)' | sort -u)
24 for KM in $MKM ; do 27 for KM in $MKM ; do
25 echo "Making $KM for $KB" 28 echo "Making $KM for $KB"
26 make ${KB}-allsp-${KM} AUTOGEN=true 29 make ${KB}:${KM} AUTOGEN=true
27 : $((exit_code = $exit_code + $?)) 30 : $((exit_code = $exit_code + $?))
28 done 31 done
29 fi 32 fi